2014-03-28 66 views
1

我添加使用add_rewrite_endpoint()如何檢查當前瀏覽的頁面是否是WordPress中的端點?

我現在可以鏈接,如端點作者鏈接:example.com/author/username/articles

檢查時,當前查看的頁面是作者頁面(example.com/author/username)我可以這樣做:

if (is_author()) 

但我該如何檢查當前瀏覽的頁面是否是我的新端點?即:example.com/author/username/articles

編號:

https://codex.wordpress.org/Rewrite_API/add_rewrite_endpoint https://codex.wordpress.org/Function_Reference/is_author

回答

6

我找到了答案:

global $wp_query; 
isset($wp_query->query_vars['articles']) 
+1

在某個時刻,你得寫一篇博客文章:'掌握終點,由亨利wright'; ) – brasofilo

+0

@brasofilo有人打我:) - 看看這篇文章,它解釋了一切:https://make.wordpress.org/plugins/2012/06/07/rewrite-endpoints-api/ – henrywright

+1

。 。書籤。 。謝謝! – brasofilo

相關問題