mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
7 lines
267 B
Text
7 lines
267 B
Text
add_filter( 'relevanssi_indexing_restriction', 'rlv_exclude_protected' );
|
|
function rlv_exclude_protected( $restriction ) {
|
|
global $wpdb;
|
|
$restriction['mysql'] .= " AND post.post_password = ''";
|
|
$restriction['reason'] .= ' Has a password';
|
|
return $restriction;
|
|
}
|