显示特征图像的功能是http://codex.wordpress.org/Post_Thumbnails
要在列中显示内容,最好的方法是将内容包装在html元素中,然后将其浮动。例如:。
在模板中,您可能有:
<?php
$posts = get_posts(\'numberposts=2&order=DESC&orderby=post_title&category_name=news\' );
foreach ( $posts as $post ) : start_wp();
echo "<div class=\'news_item\'>";
toolbox_posted_on();
if ( has_post_thumbnail() ) {
the_post_thumbnail();
}
?>
<h4>
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>">
<?php the_title() ; ?>
</a>
</h4>
<?php
echo "</div>";
endforeach;
?>
那么您的css将类似于:
.news_item {
float: left;
padding: 5px;
width: 33.33%;
}
更新了答案,并附有摘录
要自定义“阅读更多”功能,请阅读以下页面:Customizing the Read more
但总而言之,请使用以下方法:
// Replaces the excerpt "more" text by a link
function new_excerpt_more($more) {
global $post;
return \'<a class="moretag" href="\'. get_permalink($post->ID) . \'"> Read the full article...</a>\';
}
add_filter(\'excerpt_more\', \'new_excerpt_more\');