上市帖子我的wordpress安裝中有一個腳本,顯示了所有位於自定義帖子類型「publicnews」下的帖子。自定義帖子類型
結果非常好,並顯示我想要顯示的所有帖子,但該列表不可點擊。
我想這樣,每個帖子顯示在輸出鏈接到他們的永久鏈接頁面。
基本上我正在尋找的是,顯示所有位於循環外列表中的自定義帖子類型'publicnews'下的帖子。顯示的帖子應該是可點擊的,並導致他們的整頁。
以下是完整代碼的觀點:
<!-- Dynamic News Box -->
<div class="col-md-8 col-sm-6">
<div class="row">
<div class="col-md-6">
<div class="panel panel-template panel-color<?=$color?>">
<div class="panel-body small-text newspagesmall">
<h3 class="h3_title">
<span class="icon-fleche"></span>
<a class="titre_href" href="">
NEWS BOX
</a>
</h3>
<div class="scrollablenews_div">
<ul>
<?php
query_posts(array('post_type' => 'publicnews', 'showposts' => 10));
if (have_posts()) : while (have_posts()) : the_post();
?>
<li><?php the_title(); ?></li>
<?php endwhile; endif; wp_reset_query(); ?>
</ul>
</div>
</div>
</div>
</div>
我希望你能幫助!
您共享的代碼與顯示列表沒有任何關係,只查詢它。您將需要分享更多的代碼,以便我們爲您提供幫助。另外,還不清楚究竟應該點擊什麼。 – rnevius
本質上,我期望做的是,顯示所有位於循環外列表中的自定義帖子類型'publicnews'下的帖子。顯示的帖子應該是可點擊的,並導致他們的整頁。 – Jake
這太棒了...但我們仍然需要查看您現有的代碼。 – rnevius