通过WordPress中的functions.php向header.php添加代码
作者:互联网
我目前在wp-content / themes / genesis / header.php中手动实现了跟踪代码
代码看起来像这样(缩短):
<script>
CODE HERE
<?php if (is_single()){CODE HERE}?>
CODE HERE
</script>
</head>
每当我升级genesis(WordPress主题)时,这段代码都会丢失,我必须再次手动添加它.
如何通过functions.php将此代码添加到wp-content / themes / genesis / header.php的head部分,以便它能够在Wordpress主题升级中幸存下来 – 代码将如何显示?
解决方法:
您需要使用wp_head hook将内容添加到< head>< / head>动态.
您的代码如下所示:
add_action('wp_head', 'change_this_name');
function change_this_name(){
?>
<script>
CODE HERE
<?php if (is_single()){CODE HERE}?>
CODE HERE
</script>
<?php
};
标签:wordpress,php,wordpress-theming 来源: https://codeday.me/bug/20190717/1488126.html