0
我想要針對特定的頁面模板,single.php文件與下面的功能要麼停用wpautop的內容或摘錄取決於如果頁面模板是單.php - 雖然我沒有得到它的工作:目標特定的wordpress頁面模板與functions.php
function rem_filter() {
if (is_page_template('single.php'))
{
remove_filter('the_content', 'wpautop');
} else {
remove_filter('the_excerpt', 'wpautop');
}
}
add_action ('wp_enqueue_scripts', 'rem_filter');
所有幫助,將不勝感激。我問這個問題之前發現了這個在論壇:
Wordpress use functions.php to run function only on specific page template
的感謝!
/K