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

1

そのまま使ってみて、

the_title(); 

参照

于 2013-11-08T09:58:29.283 に答える