禁用附件(图片)页面
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 function wpb_…
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
function wpb_redirect_attachment_to_post() {
if ( is_attachment() ) {
global $post;
if( empty( $post ) ) $post = get_queried_object();
if ($post->post_parent) {
$link = get_permalink( $post->post_parent );
wp_redirect( $link, ‘301’ );
exit();
}
else {
// What to do if parent post is not available
wp_redirect( home_url(), ‘301’ );
exit();
}
}
}
add_action( ‘template_redirect’, ‘wpb_redirect_attachment_to_post’ );
|
来源:https://www.wpbeginner.com/beginners-guide/image-seo-optimize-images-for-search-engines/
类别:WordPress开发、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!