2

我有

<?php while ( have_posts() ) : the_post(); ?>
<div class="boxes-third boxes-first">       
      <div class="latestthree">
        <div class="title">
           <?php get_the_title($id); ?> // I am trying to get the post title here but doesn't work
            <span class="titlearrow"></span>
            </div>
            <div class="latestthreeimage">
    <a rel="prettyPhoto" title="<?php get_the_title($id); ?>"> /same here
      <?php the_post_thumbnail(array(300,133)); ?>
    </a></div>
            <div class="text">
             Here i would like to get the excerpt of the post that is no longer than 25 words
             <span class="textarrow"></span>
            </div>
        </div>       
    </div>
<?php endwhile; ?>

我正在尝试执行上述操作,但没有成功,最后一个也没有找到相关信息。我正在使用 wp 3.7.1。请帮我。

4

2 回答 2

5

你用过get_the_title()哪个不打印。要打印出标题,请添加一个额外的echo

 <?php echo get_the_title(); ?> 

或者您可以使用the_title(),它也打印:

<?php the_title();?>
于 2013-11-08T09:56:44.400 回答
1

尝试使用,

the_title(); 

参考

于 2013-11-08T09:58:29.283 回答