Home Forums HashOne Title of the category

Viewing 1 post (of 1 total)
  • Author
    Posts
  • #4670
    shap
    Participant

    How to remove “Category:” from category title
    It’s easy to do that. Simply open the functions.php file in your theme and add the following code at the end of the file:

    function prefix_category_title( $title ) {
    if ( is_category() ) {
    $title = single_cat_title( ”, false );
    }
    return $title;
    }
    add_filter( ‘get_the_archive_title’, ‘prefix_category_title’ );

    Now refresh your category pages and you will see “Category: ” is gone.

Viewing 1 post (of 1 total)
  • You must be logged in to reply to this topic.