py4room 发表于 2016-10-18 15:39:05

:(:(:(:(:(:(:(:(:(:(:(:(:(:(:(:(:(

minghui227 发表于 2016-10-25 14:20:46


给力,支持一下。

洪福齐_GiP4L 发表于 2016-11-15 13:29:43

<?php
// 此为Wordpress免费版发布接口,只可以发布标题,内容,TAG
// 需要定时发布,自定义字段,发布回复的朋友,可以购买付费版本:http://www.kalvin.cn/article/locoyspider-wordpress-interface/

// 加载接口所必需的文件
@header('Content-Type: text/html; charset=UTF-8');
require('./wp-load.php');
require_once(ABSPATH . 'wp-admin/includes/admin.php');
@extract($_REQUEST,EXTR_OVERWRITE);

// 刷新分类列表
if (empty($post_title)) {
        wp_dropdown_categories(array(
                'hide_empty' => 0,
                'hide_if_empty' => false,
                'taxonomy' => 'category',
                'name' => 'parent',
                'orderby' => 'name',
                'hierarchical' => true,
                'show_option_none' => __('None'))
        );
        exit();
}

$post_time =time() ;

// 初始化发贴信息
$post_info = array(
        'post_status' => 'publish',
        'post_type' => 'post',
        'post_author' => 1,
        'ping_status' => get_option( 'default_ping_status' ),
        'comment_status' => get_option( 'default_comment_status' ),
        'post_pingback' => get_option( 'default_pingback_flag' ),
        'post_parent' => 0,
        'menu_order' => 0,
        'to_ping' => '',
        'pinged' => '',
        'post_password' => '',
        'guid' => '',
        'post_content_filtered' => '',
        'post_excerpt' => $post_excerpt,
        'import_id' => 0,
        'post_content' => $post_content,
        'post_title' => $post_title,
        'post_category' => array($post_category_id),
        'post_name' => trim($post_name),
        'post_date_gmt' => get_gmt_from_date(gmdate('Y-m-d H:i:s', $post_time + ( get_option( 'gmt_offset' ) * 3600 ))),
        'post_date' => gmdate('Y-m-d H:i:s', $post_time + ( get_option( 'gmt_offset' ) * 3600 )),
        'tags_input' => array_unique(array_filter(explode(',', $tags))),
);

// 发布文章
$pid = wp_insert_post($post_info);
if ($pid) {
        echo " $pid Ok";
} else {
        exit('error');
}
?>
      

hcsos110 发表于 2016-11-30 14:00:14

111111111111111111

evayn 发表于 2016-12-3 17:30:24

是什么版本的

xiangzun 发表于 2016-12-14 15:21:20

:(:(:(:(:(:(:(:(:(

nustln 发表于 2017-5-24 11:30:30

这么久了,还能用吗

havewhatone 发表于 2017-5-26 07:51:05

想要看看是什麼

兰馨雨 发表于 2017-6-2 04:00:00

发布接口564564562531562发布接口

落水鱼 发表于 2017-8-6 09:58:40

必须的支持一下
页: 36 37 38 39 40 41 42 43 44 45 [46] 47 48 49 50
查看完整版本: 【孤魂作品】WordPress采集发布接口 免费版 V1.0