Wordpress将html添加到网站标题

时间:2013-09-03 03:01:33

标签: jquery wordpress

我想在 wordpress 博客的网站标题中加粗其中一个字词。我读到这是不可能的,所以我去了jquery路线来替换文本,但它也没有用。

我尝试将下面的代码放在header.phpfooter.php中,但我无法让它运行。

<!-- Change site title -->
<script type="text/javascript">
    $(document).ready(function() {
        $("h1#site-title a").text("name<b>surname</b>");
    });
</script>

1 个答案:

答案 0 :(得分:1)

如果您要尝试将其直接插入header.php文件而不是使用正确的wp_enqueue_script()方法,则需要执行三项操作。

1) - 您需要确保将其称为after wp_head()

2) - 如果您尝试在文档中插入html,则需要使用.html()

3) - 可能存在一些冲突,因此您应该使用no conflict ready handler

jQuery(function($){
    $("h1#site-title a").html("name<b>surname</b>");
});