使用挂钩时,如wp_enqueue_scripts
您有权访问Conditional Tags. 这允许您仅将某些内容排入特定页面、模板、分类法等中。
默认情况下,WordPress接受两个模板文件作为自然博客:
index.php
home.php
您可以在
Template Hierarchy 贴子,虽然上面写着“主页”,但只有在以下情况下,它才会取代主页
front-page.php
主题中不存在。你所拥有的是
Page Template 作为您的“博客”和
not the standard 您需要使用
is_page()
:
/**
* Enqueue Styles and Scripts
*/
function theme_name_scripts() {
if( is_page( \'blog\' ) ) { // Only add this style onto the Blog page.
wp_enqueue_style( \'style-name\', get_stylesheet_uri() );
}
}
add_action( \'wp_enqueue_scripts\', \'theme_name_scripts\' );