wordpress經常使用的幾種挪用辦法

要扶植好企業網站的幾概略點
2016-05-13
互聯網運營的四大精華
2016-05-13
Show all

wordpress經常使用的幾種挪用辦法

比來張力用wordpress法式折騰瞭兩套模板瞭,對付wordpress法式也玩瞭好幾個月瞭,對付它的一些挪用手段上也懂得瞭一些。本日這篇文章就是跟人人講一下經常使用的幾種wordpress挪用辦法。

第一種:最新文章挪用

這個是我們在用wordpress法式時常常要用到的,以下是挪用代碼:

<?php $rand_posts = get_posts(numberposts=8orderby=post_date); foreach( $rand_posts as $post ) : ?>
<li><a href=<?php the_permalink(); ?> title=<?php the_title(); ?>><?php echo mb_strimwidth(get_the_title(), 0, 50, ); ?></a></li>
<?php endforeach; ?>

請留意,上面赤色數字8是代表挪用的文章條數,這個您能夠本身調劑的。爾後面的0,50這個是挪用文章的題目表現為50個字節,也就是文章題目最多表現25個字。

第二種:隨機文章挪用

這個也是我們在用wordpress法式時常常用到的,由於這個可讓你的頁面時候都是分歧內容的,對付優化上是有必定利益的,詳細代碼以下:

<?php $rand_posts = get_posts(numberposts=8orderby=rand); foreach( $rand_posts as $post ) : ?>
<li><a href=<?php the_permalink(); ?> title=<?php the_title(); ?>> <?php echo mb_strimwidth(get_the_title(), 0, 50, ); ?> </a></li>
<?php endforeach; ?>

同上面提到的一樣,赤色數字8是代表挪用的文章條數,這個您能夠本身調劑的。爾後面的0,50這個是挪用文章的題目表現為50個字節,也就是文章題目最多表現25個字。

第三種:熱點文章挪用

這個信任人人都曉得,這個的挪用能夠表現我們網站最多閱讀的文章,也就是用戶最存眷的文章。以下為挪用代碼:

<?php $postslist = get_posts(numberposts=8order=DESCorderby=comment_count); foreach( $postslist as $post ) : ?>
<li><a href=<?php the_permalink(); ?> title=<?php the_title(); ?>><?php echo mb_strimwidth(get_the_title(), 0, 50, ); ?></a></li>
<?php endforeach; ?>

同上面兩個一樣,赤色數字8是代表挪用的文章條數,這個您能夠本身調劑的。爾後面的0,50這個是挪用文章的題目表現為50個字節,也就是文章題目最多表現25個字。

第四種:置頂文章挪用

這個人人就都沒有生疏瞭,這個是許多網站都有效到的,wordpress的置頂文章代碼是分為兩個部門的,我這裡就給人人說一下。

<?php
$sticky = get_option(sticky_posts);
rsort( $sticky );
$sticky = array_slice( $sticky, 0, 5);
query_posts( array( post__in => $sticky, caller_get_posts => 1 ) );
if (have_posts()) :
while (have_posts()) : the_post();
?>

<li><a href=<?php the_permalink(); ?> title=<?php the_title(); ?> rel=bookmark><?php the_title(); ?></a></li>

<?php endwhile; endif; ?>

上面這段代碼中$sticky, 0, 5中的5代表的是置頂文章挪用條數,<a href=<?php the_permalink(); ?> title=<?php the_title(); ?> rel=bookmark><?php the_title(); ?></a>代表的是挪用的文章鏈接和題目。留意:人人在增加置頂文章時,必定沒有要忘瞭末瞭的<?php endwhile; endif; ?>。

第五種:挪用指定分類

我們偶然候在用word***ess法式時願望本身某一頁面挪用指定的分類,上面這段代碼便可以讓你在應用word***ess時,指定挪用某個分類下的文章,代碼以下:

<?php query_posts(cat=15posts_per_page=8caller_get_posts=1***ime;); ?>
<?php while (have_posts()) : the_post(); ?>

<li><a href=<?php the_permalink(); ?> title=<?php the_title(); ?>> <?php echo mb_strimwidth(get_the_title(), 0, 50, ); ?> </a></li>

<?php endwhile; ?>

上面這段代碼中的cat=15中的15代表的是分類ID,我們隻須要修正這個數字為本身的分類ID便可以瞭;而數字8代表的是挪用文章條數。這個你能夠本身調劑為本身想要表現的文章條數。

以上這五種wordpress挪用辦法,也是張力本身在用word***ess法式做站時有常常用到的,願望對人人有所贊助!本文由張力 首創寫作,轉載請說明網址,感謝!

Comments are closed.