2013-06-26 67 views
0

我正在使用一段php來回顯幾個類別中的所有帖子。Wordpress自定義blog_query

$blog_query = 'showposts=100&cat=8&paged='.$paged; 
$posts = query_posts($blog_query); 
while (have_posts()) : the_post(); 
endwhile; 

它迴應了標題和帖子內容的帖子。

我想編輯該函數,以便我可以用自己的自定義格式(無需發佈內容)回顯內容。

<ul id="customList"> 
<li><a href="[POST LINK]">[POST TITLE]</a></li> 
<ul/> 

回答

3
<ul id = "customList"> 
<?php 
$blog_query = 'showposts=100&cat=8&paged='.$paged; 
// The Query 
query_posts($blog_query); 
// The Loop 
while (have_posts()) : the_post(); ?> 

<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> 

<?php endwhile; 
// Reset Query 
wp_reset_query(); 
?> 
</ul> 

我上面的代碼測試

OUTPUT將在格式:

<ul id="customList"> 
<li><a href="[POST LINK]">[POST TITLE]</a></li> 
<ul/> 
+0

我嘗試使用該代碼並將其返回:致命錯誤:允許存儲器大小33554432字節耗盡(試圖分配14520321字節) –

+0

嗨PhilipK,我編輯了我的代碼,希望它能幫助你 – Denish