0
我做了WordPress的佈局,我想讓網站這樣的最新消息:http://i.imgbox.com/FRTym7rb.pngWordPress的最新消息佈局帖子
但我在谷歌搜索和方式去「my_post_class」 ..但我試過了,但沒有奏效。所以,我想知道如何使用my_post_class來做到這一點。請和謝謝!
我做了WordPress的佈局,我想讓網站這樣的最新消息:http://i.imgbox.com/FRTym7rb.pngWordPress的最新消息佈局帖子
但我在谷歌搜索和方式去「my_post_class」 ..但我試過了,但沒有奏效。所以,我想知道如何使用my_post_class來做到這一點。請和謝謝!
不確定您附加圖片的哪一部分是您遇到問題? 如果它是正確的「側欄」部分,那麼你可以使用foreach循環來調用最新的帖子。
例如:
<?php
global $post;
$myposts = get_posts('numberposts=4');
foreach($myposts as $post) : setup_postdata($post); ?>
<article>
<figure class="post-thumbnail">
<?php the_post_thumbnail(); ?>
</figure>
<h5><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h5>
<small><?php the_time('F jS, Y') ?></small>
</article>
<?php endforeach; ?>
,如果它放在左側,將是這樣的:
<?php
global $post;
$myposts = get_posts('numberposts=2');
foreach($myposts as $post) : setup_postdata($post); ?>
<article>
<figure class="post-thumbnail">
<?php the_post_thumbnail(); ?>
</figure>
<small><?php the_time('F jS, Y') ?></small>
<h5><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h5>
<p><?php echo substr(get_the_excerpt(), 0,160); ?></p>
</article>
<?php endforeach; ?>
希望它有助於