访问url时,您很可能正在查看附件页。Wordpress的默认行为是为您上载的每个图像创建一个页面。如果不想访问这些附件页,可以阻止对其的访问。
为此,请编辑文件attachment.php
(或image.php
如果您只想阻止对主题中图像的访问),或者如果该文件不存在,则添加该文件。添加以下代码行作为first 线此附件页的所有访问者现在都将重定向到图像连接到的帖子,或者作为回退,重定向到您的主页。
<?php
global $post;
if( $post->post_parent != 0 ) {
$redirect_url = get_permalink($post->post_parent);
} else {
$redirect_url = get_bloginfo(\'url\');
}
wp_redirect($redirect_url);
exit();
?>