最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

functions - is_account_page() change to page slug

programmeradmin1浏览0评论

i'm really new to wordpress php. which function should i use to replace is_account_page() in a code. here's what I'm trying to achieve before

if (is_account_page()){
do some code here
}

after

if (user on this page slug){
do some code here
}

what is the appropriate function I should use for the user on this page slug part

i'm really new to wordpress php. which function should i use to replace is_account_page() in a code. here's what I'm trying to achieve before

if (is_account_page()){
do some code here
}

after

if (user on this page slug){
do some code here
}

what is the appropriate function I should use for the user on this page slug part

Share Improve this question asked Jan 31, 2021 at 16:36 ChaCha 132 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

You could try to use the is_page() function - https://developer.wordpress/reference/functions/is_page/

The function signature accepts one parameter - $page

(int|string|int[]|string[]) (Optional) Page ID, title, slug, or array of such to check against.

Default value: ''

if ( is_page('account') ){
   // do some code here
}
发布评论

评论列表(0)

  1. 暂无评论