公告
财富商城
积分规则
提问
发文
2020-05-29 01:26发布
The star\"
What are the different ways to detect wordpress homepage
except is_front_page() and is_home()
is_front_page()
is_home()
Thanks
I just do the following:
if ( $_SERVER["REQUEST_URI"] == '/' ) { }
It works and doesn't overcomplicate things, especially as is_front_page() and is_home() don't always work as you'd expect them to.
最多设置5个标签!
I just do the following:
It works and doesn't overcomplicate things, especially as
is_front_page()
andis_home()
don't always work as you'd expect them to.