我正在构建自定义页面模板,其中有些内容可以通过适当的文章/帖子进行编辑。以下是这些代码块:
<?php
$contact = new WP_Query();
$contact = get_posts( array( \'slug\' => \'contact-home\' ) );
if ( $contact )
{
echo apply_filters ("the_content", $contact[0]->post_content);
}
wp_reset_postdata();
?>
.. some template code ...
<?php
$about = new WP_Query();
$about = get_posts( array( \'slug\' => \'about-home\' ) );
if ( $about )
{
echo apply_filters ("the_content", $about[0]->post_content);
}
wp_reset_postdata();
?>
.. some template code ...
<?php
$history = new WP_Query();
$history = get_posts( array( \'slug\' => \'history-home\' ) );
if ( $history )
{
echo apply_filters ("the_content", $history[0]->post_content);
}
wp_reset_postdata();
?>
但无论我做什么,所有变量都有一个数组,数组中的变量都是从其他查询中预加的(例如。
$about[0]
从中提供查询结果
$history
,
$about[1]
给予
$about
结果,以及
$about[2]
退货
$contact
结果)。
有人能帮我吗?