我试图学习一些关于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
}
}