『壹』 如何將wordPress的某篇文章設置為首頁置頂文章
1、進入博客後台文章列表,我們首選需要找到是你想設置為置頂的文章的文章,點擊專「快速編輯」,屬
2快速編輯界面這時候會跳出來,在快速編輯界面的右側,找到「置頂這篇文章」的選項,然後打鉤選擇,再點擊「更新」就可以了。
3「更新「按鈕必須要點擊後才能保證設置」置頂文章「的成功。
『貳』 wordpress 如何設置和調用熱點文章 推薦文章 頭條文章
調用最新文章:
<?php query_posts(『showposts=14′); ?>
<ul>
<?php while (have_posts()) : the_post(); ?>
<li><a title=」<?php the_title(); ?>」 href=」<?php the_permalink() ?>」><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
調用熱門文章:
<ul>
<?php
$post_num = 14; // 設置調用條數
$args = array(
『post_password』 => 」,
『post_status』 => 『publish』, // 只選公開的文章.
『post__not_in』 => array($post->ID),//排除當前文章
『caller_get_posts』 => 1, // 排除置頂文章.
『orderby』 => 『comment_count』, // 依評論數排序.
『posts_per_page』 => $post_num
);
$query_posts = new WP_Query();
$query_posts->query($args);
while( $query_posts->have_posts() ) { $query_posts->the_post(); ?>
<li><a href=」<?php the_permalink(); ?>」 title=」<?php the_title(); ?>」><?php the_title(); ?></a></li>
<?php } wp_reset_query();?>
</ul>
調用隨機文章:
<ul>
<?php
global $post;
$postid = $post->ID;
$args = array( 『orderby』 => 『rand』, 『post__not_in』 => array($post->ID), 『showposts』 => 14);
$query_posts = new WP_Query();
$query_posts->query($args);
?>
<?php while ($query_posts->have_posts()) : $query_posts->the_post(); ?>
<li><a href=」<?php the_permalink(); ?>」 title=」<?php the_title_attribute(); ?>」><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
『叄』 wordpress首頁除了正常文章外,再調用單獨一個文章置頂代碼怎麼寫
這個不用代碼直接登陸你的後台,通過更新文章之後在右側有一個文章置頂,只要選中他就可以將最新的文章置頂。至於這個代碼可以不用寫。
詳細步驟:
進入你網站的後台,通過在文章更新頁面先更新文章,確定文章的特色圖像以及你所需要更新所有的內容,待發布文章之前在編輯頁面的右側就有一個文章置頂的字樣,你只需要將那個勾選文章自然而然會置頂,當然這個也是最新的置頂。
『肆』 怎麼給wordpress主題添加一個文章標題置頂的功能
①其實代碼很簡單,區區很短的代碼即可以實現,原理也很簡單,簡單的php代碼判斷:版
<?php if ( is_sticky() ) {echo "置頂!權";}?>
只需要把這段代碼添加到輸出標題的代碼後面即可,一般是放在<?php the_title(); ?></a>後面,意思是:如果這是一篇置頂文章,則輸出「置頂!」文字。
『伍』 wordpress分類目錄頁面怎麼置頂文章呢請教wordpress高手回答!
只要修改代碼就可以實現。
原理是這樣的,找到首頁模版,替換成你需要顯示的那個分類的ID代碼,這樣就可以了,但是也只有設置了ID的分類才會在首頁出現。如果你發布的文章不在那個分類里,它也就還是不會顯示在首頁。
『陸』 WordPress怎麼設置文章置頂
1.首先打網站後台,並登陸後台。
『柒』 關於wordpress主題調用置頂文章!怎樣改寫這段呢
在數組裡面添加一句
'post__in'=>get_option('sticky_posts'),
即可獲取置頂文章