0
A
回答
0
雖然我沒有在一個小而人氣-大賽的工作,我認爲這應該工作:
/**
* Define the categories to be tracked
*/
$GLOBALS['pc_track_cats'] = array(1,3,5,8); // alternately, category slugs can be used as well
/**
* Check the content each time it is called to see if we're in our target cat
* if not, remove the popularity-contest filter
*
* @param string $the_content
* @return string
*/
function my_check_pc($the_content) {
if (!in_category($GLOBALS['pc_track_cats'])) {
remove_filter('the_content', 'akpc_content_pop');
}
return $the_content;
}
add_filter('the_content', 'my_check_pc', 1);
/**
* Replace the popularity contest filter after the content has been run
*
* @param string $the_content
* @return string
*/
function my_replace_pc($the_content) {
add_filter('the_content', 'akpc_content_pop');
return $the_content;
}
add_filter('the_content', 'my_replace_pc', 9999);
相關問題
- 1. angularjs只在特定的WordPress的帖子
- 2. WordPress - 只顯示父類別的帖子不是子類別的帖子
- 3. WordPress針對特定頁面上的特定帖子類別
- 4. 如何跟蹤WordPress的帖子(視圖,份額)的「流行度」以呈現類別中的「最熱門」帖子?
- 5. WordPress的類別和帖子
- 6. WordPress的類別模板顯示所有類別的帖子,而不是特定的類別帖子
- 7. 的WordPress:只顯示特定類別的帖子如果允許後=評論
- 8. WordPress的:從特定類別的帖子生成標籤陣列
- 9. 特定類別的所有WordPress的帖子將在page.php文件
- 10. WordPress的:獲取特定類別的帖子
- 11. WordPress的 - 顯示從特定類別3最近的帖子
- 12. 從特定類別檢索CPT帖子| WordPress的
- 13. 將wordpress評論發佈爲特定類別的帖子
- 14. Wordpress - 增加特定類別內顯示的帖子數量
- 15. Wordpress顯示特定類別下的所有帖子
- 16. 如何在wordpress中顯示來自特定類別的帖子
- 17. 在wordpress中隱藏類別列表中的特定帖子
- 18. 用戶從特定類別的帖子數[Wordpress]
- 19. Wordpress - 來自特定類別的顯示限制帖子
- 20. 在wordpress中做一個特定的帖子類別顯示
- 21. wp類別顯示所有類別的所有帖子,而不是來自特定類別的特定帖子
- 22. 如何在Wordpress中的特定頁面上放置特定類別的帖子?
- 23. WordPress的子類別與帖子標題
- 24. 鏈接類別帖子(Wordpress)
- 25. 將帖子限制在特定的類別和子類別
- 26. WordPress的 - 從子類別列出的自定義帖子類型
- 27. 如何獲得只有人跟帖的帖子的時間表
- 28. 每n個帖子添加一個特定類別的帖子
- 29. WordPress的顯示類別ID的帖子
- 30. 在WordPress中只顯示自定義帖子類型的固定鏈接中的特定類別