Description
Hide the selected post from robots using WordPress SEO_yoast_wpseo_meta-robots-noindex 0=default|1=noindex|2=index _yoast_wpseo_meta-robots-nofollow 0=follow|1=nofollow _yoast_wpseo_sitemap-include -=auto detect|always=Always include|never=Never include
Usage
oik_batchmove_perform_wpseohide( $id );Parameters
- $id
- ( integer ) required – ID of the post to be updated
Returns
voidSource
File name: oik-batchmove/admin/oik-batchmove.phpLines:
1 to 5 of 5
function oik_batchmove_perform_wpseohide( $id ) { update_post_meta( $id, "_yoast_wpseo_meta-robots-noindex", 1 ); update_post_meta( $id, "_yoast_wpseo_meta-robots-nofollow", 1 ); update_post_meta( $id, "_yoast_wpseo_sitemap-include", "never" ); }View on GitHub View on Trac
