2011-05-26 66 views

回答

0

是否有理由選擇此策略來顯示內容?使用更符合正常wordpress頁面開發和模板系統的東西可能會解決您的問題。我建議使用)get_posts的組合(和setup_postdata()

從WordPress的文檔:

<?php 
global $post; 
$tmp_post = $post; 
$args = array('numberposts' => 5, 'offset'=> 1, 'category' => 1); 
$myposts = get_posts($args); 
foreach($myposts as $post) : setup_postdata($post); ?> 
    <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> 
<?php endforeach; ?> 
<?php $post = $tmp_post; 
?> 

參見:http://codex.wordpress.org/Template_Tags/get_posts

4

爲了得到正確的格式,並有簡碼換成你需要申請過濾器掛在the_content標籤上,如下所示:

echo apply_filters('the_content', getPageContent(ID)); 
相關問題