WordPress 站点可以在后台的媒体库或在编辑文章/页面的时候直接上传图片,但是 WordPress 会为这个图片创建一个页面,它被称为附件页面,此页面仅显示实际图像的更大版本,而不是其他任l # ~ y何内容6 a $。这可能会对我们站点的搜索排名产生负面的 SEO 影响,因为搜索引擎会将几乎没有文本的页面视为低质量内容。
虽然我们可以通过其他途径,如 robots.txt 文件来禁止搜索引擎收录类似的附件页M * 4 I .面,但是也不能保证所有搜索引擎都遵守。所以最好的方法就是直接禁用我们网站上的这个附件页面。具体办法就是将以下代码添加到当前主题的 functions.php 文件中即可:
- //禁用 WordPress 附件# 6 = ) \ $ @ o ]页面
- function wpb_redirect_attachment_to_post() {s * c
- if ( is_attachment(\ \ r . A % 91; ) {
- global $post;
- if( empty( $post ) ) $post- X U ) L J ) s = get_queried_object();
- if ($post->post_parent) {
- $link = get_permalink(] s j $post->post_parent );
- wp_redirect( $link, '301' );
- exit();
- }
- elseE + t % C a * {
- // What to do if parent post is not avl ] h K *ailable
- wp_redirect( home_urlx w 3 t 440;E o h 7 U1;, '301' );
- exit_ Q ^ ? ~ G R +0;);
- }
- }
- }
- add_actioz [ ( k H Jn( 'template_redirect', 'wpb_redirect_attachment_to_post' );