替换WordPress或主题中的单词(不在内容中)

时间:2018-08-22 作者:omega1

我正在努力寻找出现在Wordpress(或主题)中的一些单词。尤其是我找不到“by”这个词的位置,因为我需要回答这个词。这是出现在每篇文章“作者日期”顶部的“作者”一词。我需要用“by”替换另一个单词,但找不到它的位置。

我在设置中尝试了以下操作。php的主题,但它不起作用:

function hpm_replace_text($translated_text) {
    switch ($translated_text) {

        case \'by\' : // write the original string here
            $translated_text = \'por\'; // make a change to it
            break;

    }

    return $translated_text;
}
add_filter(\'gettext\', \'hpm_replace_text\');
还有其他词,如“类别”、“回复”,我需要替换它们,但找不到它们的位置。

有人能帮忙吗?谢谢

1 个回复
最合适的回答,由SO网友:De Coder 整理而成

这些将在您的模板中。可以在此处找到模板文件层次结构,它可以帮助您查找所查看页面的特定模板:https://developer.wordpress.org/themes/basics/template-hierarchy/

显示当前插件也可以帮助:https://wordpress.org/plugins/show-current-template/

结束

相关推荐

Admin Theme customization

我遵循wordpress codex网站上关于通过插件创建管理主题的说明。我激活了插件,但我的样式表没有包含在<head>.. 这是我的代码:add_action( \'admin_init\', \'kd_plugin_admin_init\' ); add_action( \'admin_menu\', \'kd_plugin_admin_menu\' ); function kd_plugin_admin_init() { /* Register