PHP 使用json格式post到wordpress的解决办法
内容摘要
这篇文章主要为大家详细介绍了PHP 使用json格式post到wordpress的简单示例,具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试代码如
对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试代码如
文章正文
这篇文章主要为大家详细介绍了PHP 使用json格式post到wordpress的简单示例,具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试代码如下:
<?php
/**
* 使用json格式post到wordpress
*
* @param
* @arrange (www.idcnote.com)
**/
// include our wordpress functions
// change relative path to find your WP dir
define('WP_USE_THEMES', false);
require('./wp-blog-header.php');
// set header for json mime type
header('Content-type: application/json;');
// get latest single post
// exclude a category (#5)
query_posts(array(
'posts_per_page' => 5,
'cat' => -5,
));
$jsonpost = array();
if (have_posts()) {
if ( have_posts() ) : while ( have_posts() ) : the_post();
// construct our array for json
// apply_filters to content to process shortcodes, etc
$jsonpost["id"] = get_the_ID();
$jsonpost["title"] = get_the_title();
$jsonpost["url"] = apply_filters('the_permalink', get_permalink());
// $jsonpost["content"] = apply_filters('the_content', get_the_content());
$images = get_children( array( 'post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC', 'numberposts' => 999 ) );
if ( $images ) {
$total_images = count( $images );
$image = array_shift( $images );
$jsonpost['featured_image'] = wp_get_attachment_image( $image->ID, 'thumbnail' );
}
$jsonpost["content"] = get_the_content();
// would rather do iso 8601, but not supported in gwt (yet)
$jsonpost["date"] = get_the_time('d F Y');
$jsonposts[] = $jsonpost;
endwhile;
endif;
} else {
// deal with no posts returned
}
// output json to file
header('Cache-Control: no-cache, must-revalidate');
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Content-type: application/json');
echo json_encode($jsonposts);
/*** 来自:php教程(www.idcnote.com) ***/
?>
注:关于PHP 使用json格式post到wordpress的简单示例的内容就先介绍到这里,更多相关文章的可以留意
代码注释