網頁

2013年10月20日 星期日

wordpress post

彻底解决wordpress文章ID不连续显示的问题


/** 禁用修改版。 */
define(‘AUTOSAVE_INTERVAL’, 120000000 ); // 设置自动保存间隔,单位是秒,默认60

define(‘WP_POST_REVISIONS’, false ); // 禁用文章修订功能





透過name取得page的 wp_posts #id

Get a post by its slug

Allows you to get a post ID by post slug.
<?php
$the_slug = 'my-slug';
$args=array(
 'name' => $the_slug,
 'post_type' => 'page',
 'post_status' => 'publish',
 'posts_per_page' => 1
);
$my_posts = get_posts( $args );
if( $my_posts ) {
 echo 'ID on the first post found ' . $my_posts[0]->ID;
}
?>

WP_Query、query_posts() 和 get_posts()应该在什么时候使用

WordPress输出文章最常见的函数是query_posts(),但query_posts()不是唯一的方式,而且乱用query_posts()不是一个好习惯。get_posts()或者WP_Query也可以达到相同的作用。看了一篇文章,描述了这三者的区别。

query_posts()

query_posts()主要用来输出主循环,并且会创建很多全局变量。因此不适合到处使用,最佳使用场所就是输出主循环,别的地方能不用就不要用。如果一定要用,记得在输出结果以后使用wp_reset_query()函数重置查询结果,防止意外修改主循环和全局变量产生一堆莫名其妙的错误。

get_posts()

get_posts()的机制与query_posts()类似,参数也相同,是一种简单的获取文章的方法,get_posts()不会产生全局变量,不影响主循环,非常安全。如果要在主循环之外输出最新文章、特色文章等,不妨考虑用这个。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//get_posts参数
<?php
$args = array(
 'numberposts'  => 5,
 'offset'    => 0,
 'category'  => ,
 'orderby'   => 'post_date',
 'order'     => 'DESC',
 'include'   => ,
 'exclude'   => ,
 'meta_key'  => ,
 'meta_value'   => ,
 'post_type'    => 'post',
 'post_mime_type'  => ,
 'post_parent'  => ,
 'post_status'  => 'publish' ); ?>

WP_Query


WP_Query是前两个函数的基础,使用起来更复杂,但限制也少。适合创建功能比较特殊的自定义循环,也完全可以取代上面两个函数。

Example

Before calling wp_update_post() it is necessary to create an array to pass the necessary elements. Unlikewp_insert_post(), it is only necessary to pass the ID of the post to be updated and the elements to be updated. The names of the elements should match those in the database.

// Update post 37
  $my_post = array(
      'ID'           => 37,
      'post_content' => 'This is the updated content.'
  );

// Update the post into the database
  wp_update_post( $my_post );

沒有留言:

張貼留言

注意:只有此網誌的成員可以留言。