Mika MAtikainen

Apr 15, 2020 · 4 min read

How can I replace the “Howdy, User Name” with anything I desire in WordPress?


function wpsc_exclude_category_home( $query ) {
if ( $query->is_home ) {
$query->set( 'cat', '-5, -34' );
}
return $query;
}
add_filter( 'pre_get_posts', 'wpsc_exclude_category_home' );

Subscribe To Our Newsletter

Join our mailing list to receive the latest news and updates from our team.

You have Successfully Subscribed!

Share This