_title()和_content()的用法有区别吗

时间:2020-12-27 作者:cvr

我试图学习一些关于WP的基本知识,所以我将以下代码粘贴到WP页面中,在该页面中我使用了一个允许我编写PHP的插件。

它适用于\\u标题(两次),但当我将\\u内容放在两者之间时,页面将挂起,没有输出。我必须对\\u内容进行注释,以使页面打印\\u标题(两次)。不同的努力会产生相同的结果:\\u content()会挂起页面,但不会挂起\\u title()。

使用\\u内容时我做错了什么。

很抱歉,我没有得到完美的格式。br1是包含在标记中的中断标记,用于停止php解释

$args = array(
    \'post_type\' => \'post\'
);

$post_query = new WP_Query($args);

if($post_query->have_posts() ) {
    while($post_query->have_posts() ) {
        $post_query->the_post();
            the_title();
            br1
            // the_content();
            br1
            the_title();
            br1br1
        }
    }

1 个回复
SO网友:cvr

我们可以放弃这个问题。页面在列出自身时可能会循环。我必须找到一种排除列表本身的方法。很抱歉

这就是我们所缺少的

$args = array(
\'post_type\' => \'post\',
\'post__not_in\' => array(get_the_ID())
 );

相关推荐