I am developing a blogging site using wordpress cosmica theme.
In that theme, there is a slider on which various other elements are shown such as header element and few tag.Currently the tag text is "Read More" & "Buy Now".I want to change the text for tag, however I dont see the option of customizing it. I want to know, how can I change the text for the tags. Please refer to screenshot for more clarity.
的文字答案 0 :(得分:2)
很奇怪,没有更改按钮文字的选项......你必须手动完成。 (小心更改代码中的任何内容,因为它可能会损坏您的wordpress安装)
转到外观>编辑强>
然后在右侧打开functions.php
使用ctrl + f
快速搜索“阅读更多”一词。
然后改变这个:
<?php _e('Read More', 'cosmica'); ?>
任何你想要的东西:
<?php _e('Anything you want', 'cosmica'); ?>
然后点击“保存”,
注意:
您必须为每张幻灯片执行此操作