我正在为自定义帖子类型构建自己的自定义菜单。我有一个循环,我需要知道给定的项目是否是活动的。
如何正确地执行此操作?如何比较给定的项目地址(slug、permalink、id或其他适当的选项)是否是当前加载的项目地址?
$args = array(\'post_type\' => \'services\');
$services = new WP_Query( $args );
$cnt = 0;
if( $services->have_posts() ) {
while( $services->have_posts() ) {
$services->the_post();
// HOW TO CHECK IF $services is the active page?