Quantcast
Channel: WordPress › Support » Forum: Hacks - Recent Topics
Viewing all articles
Browse latest Browse all 8245

mdgross on "Remove "At a Glance" Theme Name"

$
0
0

I would like to remove the theme name from "At a Glance." The code I was using (see below) stopped working after the WordPress 3.8 update. It appears that this text is no longer filtered by ngettext.

add_filter('ngettext', 'remove_theme_from_dash');

function remove_theme_from_dash($text)
{
	if(preg_match('/Theme.*with.*widgets/', $text))
	{
		return '';
	}
	return $text;
}

I would prefer to remove the text entirely as opposed to hiding it with CSS. Thank you.


Viewing all articles
Browse latest Browse all 8245

Trending Articles