PHP 从wordpress外面拉出帖子(以正确的方式!)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 从wordpress外面拉出帖子(以正确的方式!)相关的知识,希望对你有一定的参考价值。

<?php
  include('wp-load.php'); // it is neccesary to include wp-load.php, cause it's the only why to use Wordpress API outside of Wordpress
  // pay atention on the include path if you want to work :-)
  
  echo '<h3>Recent Blog Post</h3>';
  echo '<ul>';
  $number = 3; // number of recent posts that you want to display
  $recent_posts = wp_get_recent_posts($number); // this function will display recent posts, order by ID DESC
  foreach($recent_posts as $post){
    echo '<li><a href="'.get_permalink($post["ID"]).'">'.$post["post_title"].'</a></li>';
  }
  echo '</ul>';
?>

以上是关于PHP 从wordpress外面拉出帖子(以正确的方式!)的主要内容,如果未能解决你的问题,请参考以下文章

如何根据其中引用的当前帖子拉出帖子对象?

在 Wordpress 中从类别创建帖子的下拉菜单

php Wordpress - 以逗号分隔的帖子术语列表

PHP WordPress使用固定链接和CSS拉出特色图像

如何查询我的 WordPress 博客以列出我的 Vue.js 网站上的最新帖子?

php 从WordPress帖子获取第一段。