add_filter( 'wp_robots', 'do_nbp_noindex' );
function do_nbp_noindex($robots){
global $post;
if(check some stuff based on the $post){
$robots['noindex'] = true;
$robots['nofollow'] = true;
}
return $robots;
}
function set_noidex_when_sticky($post_id){
if ( wp_is_post_revision( $post_id ) ){
return;
} else{
if( get_post_meta($post_id, '_property_categories', true ) ){
//perform other checks
$status = get_post_meta($post_id, '_property_categories', true );
// var_dump($status);
// die;
//if(is_sticky($post_id)){ -----> this may work only AFTER the post is set to sticky
if ( $status == 'sell') { //this will work if the post IS BEING SET ticky
add_action( 'wpseo_saved_postdata', function() use ( $post_id ) {
// die('test');
update_post_meta( $post_id, '_yoast_wpseo_meta-robots-noindex', '1' );
update_post_meta( $post_id, '_yoast_wpseo_meta-robots-nofollow', '1' );
}, 999 );
}
}
}
}
add_action( 'save_post', 'set_noidex_when_sticky' );
4条答案
按热度按时间jljoyd4f1#
这里有一个变量作用域问题:除非使用
global
关键字,否则$post
对象在函数中不可用。但是,
$post
对象并不总是可用的:它只在实际查看post
、page
或自定义文章类型时设置。如果您尝试按原样使用此代码,则在未设置$post
时会抛出一些PHP警告,因此使用is_page()函数可能是一个更好的主意,因为该函数会自动为您执行此检查:xggvc2p62#
我使用wp_robots过滤器解决了这个问题:
plicqrtu3#
为了便于理解单个WordPress帖子的noindex nofollow函数的确切代码:
**重要提示:**在发布帖子时,请确保帖子是“公开的”。如果帖子是“私人”,此代码将不起作用。
nfzehxib4#