常用函数-wp_publish_post()
说明
通过更改文章状态来发表文章。
用法
<?php wp_publish_post( $post_id ) ...
常用函数-wp_update_post()
2009-03-24
常用函数-wp_update_post()
说明
该函数更新数据库中的文章。如希望函数正常运行,需传递将被更新的文章编号。
用法
<?php wp_update_post( $...
常用函数-wp_insert_post()
2009-03-24
常用函数-wp_insert_post()
说明
该函数可在数据库中插入文章(及页面)。它可以进行处理变量,检查操作,填充日期/时间等缺失变量等工作。该函数以对象作为变量,返回已创建文章的编号(出错时返回0)。
...
常用函数-wp_delete_post()
2009-03-24
常用函数-wp_delete_post()
说明
根据文章编号删除文章
用法
<?php wp_delete_post($post_id); ?>
示例
...
常用函数-wp_get_single_post()
2009-03-24
常用函数-wp_get_single_post()
说明
按文章编号检索某篇文章。
用法
<?php wp_get_single_post( $postid, $mo...
常用函数-wp_get_recent_posts()
2009-03-24
常用函数-wp_get_recent_posts()
说明
按发表时间检索数据库中的$num最新发表文章。默认检索最近十篇文章。
用法
<?php wp_get_recent_posts...
常用函数-get_extended()
2009-03-24
常用函数-get_extended()
说明
获取扩展项信息 (
<!--more-->
).
第二个破折号后和单词“more”前不能留有空格。“...
常用函数-get_children()
2009-03-24
常用函数-get_children()
get_children( )检索附件、版本、子页面等信息,一般情况下由父文章执行。
get_children( )与get_posts( )运行基本一致。
简介
...
get_posts
2009-03-24
模板标签-get_posts
说明
这是一个用于创建多环路的简单标签。
用法
<?php get_posts('arguments');...
常用函数-get_post_type()
2009-03-24
常用函数-get_post_type()
说明
检索目前文章或给定文章的文章类型。
用法
<?php get_post_type( $post ) ?>...
如何在WordPress中不借助插件显示“相关日志”
2009-03-24
“相关日志”是增加博客粘性的好方法,它能让用户在你的博客上停留更长时间。有一些插件能实现这个功能,可如果你不想用插件的话,下文将告诉你如何做。
以下代码基于WordPress中的tag系统来判断日志相关...
常用函数-get_post_status()
2009-03-24
常用函数-get_post_status()
说明
按文章ID检索文章状态。
如果文章ID是附件,该函数给出源文章的状态。
用法
<?php get_post_status(&n...