Michael,
Forget my first reply I managed to figure out my other problem.
could you help with excluding a category from my front page?
I tried this code in the theme custom css but no luck.
I’m copying and pasting with little understanding though. Could you give me a little explanation with it?
I really appreciate the help.
function exclude_category( $query ) {
if ( $query->is_frontpage() && $query->is_main_query() ) {
$query->set( ‘cat’, ‘-nutrition&exercise’ );
}
}
add_action( ‘pre_get_posts’,function exclude_category( $query ) {
if ( $query->is_frontpage() && $query->is_main_query() ) {
$query->set( ‘cat’, ‘-nutrition&exercise’ );
}
}
add_action( ‘pre_get_posts’,function exclude_category( $query ) {
if ( $query->is_frontpage() && $query->is_main_query() ) {
$query->set( ‘cat’, ‘-nutrition&exercise’ );
}
}
add_action( ‘pre_get_posts’, ‘exclude_category’ );