我如何才能在中添加简单代码,只将其添加到由unction.php发布的中

时间:2018-08-08 作者:Interessante Fakten

有很多插件可以帮助我添加代码,但它会在整个网站的每个页面上添加。Yoast Seo允许我在特定帖子的头部添加代码。但我可以按函数在所有帖子上添加代码吗。php?

1 个回复
SO网友:Atlas_Gondal

您可以进行简单的检查,以确保岗位类型为岗位;在执行实际代码之前。

For example:

add_action(\'wp_head\', \'load_custom_style_for_posts\');
function load_custom_style_for_posts(){

   global $post_type;

   if( \'post\' == $post_type ){
      echo "<style>blahblah</style>";
   }

};
将此代码放入functions.php

希望有帮助!:)

结束