我有兩個單獨的頁面,顯示了鏈接到wordpress中完整帖子的不同類別列表。這兩個目前在我的主題single.php打開,但類別需要在每個頁面上不同的風格。在不同的頁面中打開wordpress帖子
我已經創建的模板頁,但不知道如何打開手機的single.php
以外的其他頁面上的帖子,以簡化:我怎樣打開帖子上的single.php
的另一個版本代碼我有打開完整的職位是:
<?php // PAGE LINK/TITLE
if (is_page()) {
$cat=get_cat_ID($post->post_title); //use page title to get a category ID
$posts = get_posts ("category_name=case-study&posts_per_page=10");
if ($posts) {
foreach ($posts as $post):
setup_postdata($post);
?>
<div class="serve-inner-split">
<div id="case-split">
<div id="case-left" class=" serve-left">
<div id="case-study-content">
<h1 class="case-study-title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
<p><?php //PULLS IN EXCERPT
$my_excerpt = get_the_excerpt();
if ('' != $my_excerpt) {
// Some string manipulation performed
}
echo $my_excerpt; // Outputs the processed value to the page
?>
</p>
<a href="#" class="header-quote">READ CASE STUDY</a>
</div>
</div>
<div id="case-right" class="serve-grey">
<?php
if (has_post_thumbnail()) { // PULLS IN IMAGE check if the post has a Post Thumbnail assigned to it.
the_post_thumbnail();
}
?>
</div>
</div>
</div>
<?php endforeach;
}
}
?>
或者他可以以不同的方式添加類別字段和樣式index.php;) –
自定義帖子類型是我最喜歡的「開箱即用」解決方案,對於WP管理員面板不太熟悉的用戶也很方便使用:) – markoffden