1

我准备了一个滚动条,需要显示在wordpress页面的页脚中。它为我提供了一个ID,无法在页脚文件中显示它,它的显示就像code我把它放在帖子页面中一样。使用下面的插件http://www.gopiplus.com/work/2011/05/08/wordpress-plugin-image-horizontal-reel-scroll-slideshow/#.UKX1ie-0Ndg

我在帖子中应用了代码[ihrss-gallery type="gallery1" w="600" h="170" speed="1" bgcolor="#FFFFFF" gap="5" random="YES"]

有什么帮助吗?

我正在使用下面的代码 -

<?php
$post_id = 11893;
$queried_post = get_post($post_id);
$title = $queried_post->post_title;
echo $queried_post->post_content;
?>
4

2 回答 2

0

在使用 post_content 之前,您需要先使用循环

<?php if (have_posts()) : ?>
               <?php while (have_posts()) : the_post(); ?>    
               <!-- do stuff ... -->
               <?php endwhile; ?>
     <?php endif; ?>

按照本指南 http://codex.wordpress.org/The_Loop

于 2012-11-17T10:16:33.213 回答
0

有关 get_post 的更多详细信息,请单击此链接 - http://codex.wordpress.org/Function_Reference/get_post

$my_id = 297;
$post_id_7 = get_post($my_id);
$title_7 = $post_id_7->post_title;
echo $title_7;
$content_7 = $post_id_7->post_content;
echo $content_7;
于 2013-02-06T11:56:40.937 回答