代码中的Wordpress双页ID

时间:2014-03-21 18:44:54

标签: php wordpress themes

我正在开发类似于getBootstrap.com页面的主题。我面临的问题是:

我正在尝试使用以下内容在紫色部分中显示特定内容:

<?php $recent = new WP_Query("page_id=39"); while($recent->have_posts()) : $recent->the_post();?>
<h1><?php the_title(); ?></h1>
<br>
<div class="col-md-4 col-md-offset-4">
<?php the_content(); ?>
<?php endwhile; ?>

顶级内容来自第39页&lt; - 这是一个页面模板,因为我将创建多个模板以在其他页面的顶部显示特定内容,如果有其他方式,请另外帮助...

我在顶级内容之后也有这个代码,这是默认内容页面(WordPress WYSIWYG编辑器的默认页面内容)。

<?php the_content(); ?> 

但它正在获取第39页的内容。

我想在(紫色空间)中页面ID 39旁边的底部(空白区域)显示内容的页面ID。

我希望我的问题很明确。

http://i.stack.imgur.com/6lspz.png

找到解决方案:

<?php 
$id=39; 
$post = get_post($id); 
$content = $post->post_content;
echo $content;  
?>

1 个答案:

答案 0 :(得分:1)

刚用过这个:

<?php 
$id=39; 
$post = get_post($id); 
$content = $post->post_content;
echo $content;  
?>