How to Remove “View all posts filed under” Prefix from Link Title Attribute in Category Widget

Remove link prefix from categories widget in WordPress

add_filter('wp_list_categories', 'remove_category_link_prefix');
function remove_category_link_prefix($output) {
	return str_replace('View all posts filed under ', '', $output);
}

You may also like

Leave a Comment