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

Popular posts from this blog

sublimetext3 - what keyboard shortcut is to comment/uncomment for this script tag in sublime -

java - No use of nillable="0" in SOAP Webservice -

ubuntu - Laravel 5.2 quickstart guide gives Not Found Error -