php - Can't hide post in wordpress -
i want exclude category homepage. tried below code, it's working site in local server after moved code production server won't work @ all.
function exclude_category($query) { if ( $query->is_home() ) { $query->set( 'cat', '-505' ); } return $query; } add_filter( 'pre_get_posts', 'exclude_category' );
i tried install 'wp-hide-post' plugin, yet, it's not working.
what missing?
Comments
Post a Comment