How to Disable the Attachment Page in ...
WordPress Is Creating Attachment Pages You Don’t Need, you can Stop That with Code
...

WPCodeBox
596
This useful snippet provides essential debugging information, including WordPress, PHP, and plugin versions. Easily obtain compatibility details and send to support by saving it as a manually running snippet for output in WPCodeBox.
<?php
$plugins = get_plugins();
global $wp_version;
echo "PHP Version: " . phpversion() . "n";
echo "WordPress Version: " . $wp_version . "n";
echo "nnPlugin Name -> Plugin Versionnn";
foreach( $plugins as $plugin ) {
echo "$plugin[Name] -> $plugin[Version] n";
}
?>





