mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
7 lines
271 B
Text
7 lines
271 B
Text
add_filter( 'relevanssi_indexing_restriction', 'rlv_exclude_old_posts' );
|
|
function rlv_exclude_old_posts( $restriction ) {
|
|
global $wpdb;
|
|
$restriction['mysql'] .= " AND YEAR(post.post_date) >= 2021 ";
|
|
$restriction['reason'] .= ' Post too old';
|
|
return $restriction;
|
|
}
|