0
當我使用the_excerpt和the_date時,它們出現在不同的行上在wordpress中的日期摘錄
有沒有辦法讓它們顯示爲內聯?我嘗試用div包裝它們,並以這種方式設計它們,但它不起作用。我可以通過代碼以某種方式做到嗎?
感謝
當我使用the_excerpt和the_date時,它們出現在不同的行上在wordpress中的日期摘錄
有沒有辦法讓它們顯示爲內聯?我嘗試用div包裝它們,並以這種方式設計它們,但它不起作用。我可以通過代碼以某種方式做到嗎?
感謝
我覺得<?php echo get_the_excerpt(); ?>
不換行段落文本,以便您可以用the_date在線使用。
試試這個...
<?php $myposts = get_posts('numberposts=3&offset=0');
foreach($myposts as $post) :
setup_postdata($post); ?>
<li><?php the_excerpt(); ?></li>
<?php endforeach;
wp_reset_query();
?>
顯示的是WP產生一些HTML代碼 – 2011-12-15 22:31:00