如何只显示wordpress插件内容的主页?

时间:2014-06-29 23:54:37

标签: plugins wordpress-plugin wordpress

我创建了一个简单的WordPress插件。为了在页面上显示它,我使用此函数调用函数

function facebook_live_counter_main_content(){
[html markups here]
add_action ('wp_head', 'facebook_live_counter_main_content');

它正常工作。但我想只显示插件操作主页。我需要你的帮助如何调用该函数仅显示插件操作主页。

问候 -

Faysal Imran

1 个答案:

答案 0 :(得分:1)

正确的功能取决于Admin > Settings > Reading > Front page displays下的设置。如果你选择了......

" 静态页面"

" 您的最新帖子"

如果当前 页面 是主页,则is_home()功能将返回true,但如果您的首页是你的最新帖子。如果您已选择" 您的最新帖子"在Admin > Settings > Reading > Front page displays下,您应该使用is_front_page()返回true,无论首页是 还是 发布信息

http://codex.wordpress.org/Function_Reference/is_front_page http://codex.wordpress.org/Function_Reference/is_home