Remove 'Categories' title
-
I cant find a way to remove the category:
title – i tired everything mentioned in the formums. the core.php of the Auberge Plus theme is where the single_cat_title part is but even when I delete or comment out the line NOTHING HAPPENS ??
if ( ! function_exists( ‘get_the_archive_title’ ) ) {
function get_the_archive_title() {
if ( is_category() ) {
$title = sprintf( __( ‘Category: %s’, ‘wm_domain’ ), single_cat_title( ”, false ) );when i change it to
if ( ! function_exists( ‘get_the_archive_title’ ) ) {
function get_the_archive_title() {
if ( is_category() ) {
$title = sprintf( __( ‘%s’, ‘wm_domain’ ), single_cat_title( ”, false ) );or any variation NOTHING changes on the site.
Can u help me?
Website it https://www.jessijordan.com and the categories im using are the Recipes, Lifestyle+Beauty and Music
thanks in advance
- The topic ‘Remove 'Categories' title’ is closed to new replies.