如何自動在每篇文章顯往上20篇文章的連結 (WordPress)

Written By A 師兄  |  AISEO技巧  |  0 Comments

使用PHP自動在文章尾部插入文章往上的20篇文章(wordpress專用)

使用wordpress的朋友可以先安裝此插件

Code Snippets

然後按此照設定. 插入這串php code:

global $post;
$current_post = $post; // remember the current post
for($i = 1; $i <= 20; $i++):
$post = get_previous_post(); // this uses $post->ID
setup_postdata($post);

// do your stuff here
echo “<li><a href='”;
the_permalink();
echo “‘>”;
the_title();
echo “</a></li>”;

endfor;
?>

 

便會自動在每篇文章最尾顯示相應文章的往上20篇文章.

你們可以改$i<=20 , 這個數字, 如果想顯示100篇. 便改成100.