在wordpress上分离标题与缩略图

时间:2015-02-13 19:34:51

标签: php css wordpress themes sidebar

我正在做一个wordpress主题,我正试图在我的侧边栏上最近的帖子中创建缩略图和帖子标题之间的一些边距。我尝试了一切,但它不起作用。有什么提示吗?

<?php $recent_posts = wp_get_recent_posts();
foreach( $recent_posts as $recent ){
if($recent['post_status']=="publish"){
if ( has_post_thumbnail($recent["ID"])) {
    echo '<li style=" list-style: none; ">
    <a class="post-title" href="' . get_permalink($recent["ID"]) . '" title="Look '.esc_attr($recent["post_title"]).'" >' .   get_the_post_thumbnail($recent["ID"], 'thumbnail').$recent["post_title"].'</a></li> ';
}else{
    echo '<li style=" list-style: none; ">
    <a class="post-title" href="' . get_permalink($recent["ID"]) . '" title="Look '.esc_attr($recent["post_title"]).'" >' .   $recent["post_title"].'</a></li> ';
}
 }
}
?> 

1 个答案:

答案 0 :(得分:0)

你试过在它们之间插入一条断行吗?

get_the_post_thumbnail($recent["ID"], 'thumbnail') . '<br />' . $recent["post_title"].'

OR

将其添加到CSS文件中:

img.attachment-thumbnail { margin:10px; }