如何修改“查看分类中的所有帖子”标题属性

时间:2014-04-26 作者:ndru

我想更改当您将鼠标悬停在wordpress中的类别链接上时看到的“查看类别中的所有帖子”工具提示。到目前为止,我一直在名为category template的Wordpress核心文件中完成这项工作。php——不过,我正在寻找一种在函数中实现它的方法。php,所以我不必在每次Wordpress更新后更改它。

我只能找到这段代码来一起删除“查看类别中的所有帖子”标题属性,但我不知道如何修改它:

add_filter( \'the_category\', \'remove_category_title\' );
function remove_category_title( $category ) {
return preg_replace( \'/\\s* title=\\s*".*?"/i\', \'\', $category );
}
我只想更改文本“查看中的所有帖子”和“查看下存档的所有帖子”

1 个回复
SO网友:ndru

找到了一些很好的方法:

add_filter( \'the_category\', \'remove_category_link_prefix\' );
add_filter( \'wp_list_categories\', \'remove_category_link_prefix\' );

function remove_category_link_prefix($output) {
    $replace = array( 
            \'View all posts in\',
            \'View all posts filed under\' 
    );

    return str_replace( $replace, \'Text you want to show up\', $output);
}
在此处找到:http://kaspars.net/blog/wordpress/remove-view-all-posts-filed-under-category-widget

结束

相关推荐

Multiple parent categories

我是wordpress的新手。我想为每个主要类别创建一些主要类别和5个子类别。两个主要类别的子类别将相同。E、 g主要类别将是“美国”、“加拿大”等。子类别将是“地点”、“照片”等。是否可以使用单个wordpress进行此操作,或者是否需要为每个主要类别安装另一个wordpress?