您可以进行简单的检查,以确保岗位类型为岗位;在执行实际代码之前。
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
希望有帮助!:)