在Wordpress 3.5.1中我想创建&使用自定义布局显示搜索结果。我用Google搜索并找到了http://codex.wordpress.org/Creating_a_Search_Page,但这并不是我想要的。
答案 0 :(得分:2)
好的,我解决了我的问题,现在非常开心:)
我在search.php
文件
while ( have_posts() ) {
the_post();
//get_template_part( 'content', get_post_format() );
$permalink = get_permalink($post->ID);
$title = get_the_title($post->ID);
$feed = truncate( strip_tags( get_the_content($post->ID) ), 0, 300, "[...]");
echo '<div class="posts">';
echo '<div style="float:left">';
echo '<a class="featured-img">
'.the_post_thumbnail('thumbnail').'
</a>';
echo '</div>';
echo '<div class="posts-content">';
echo '<div class="heading"><a href="'.$permalink.'">'.$title.'</a></div>';
echo '<div class="comments"> </div>'.
$feed
.'</div>';
echo '</div>';
}