Changeset 2447198
- Timestamp:
- 12/29/2020 07:07:44 AM (5 years ago)
- Location:
- beepress/trunk
- Files:
-
- 3 edited
-
beebox/includes/Endpoint/Crawler.php (modified) (2 diffs)
-
beepress.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
beepress/trunk/beebox/includes/Endpoint/Crawler.php
r2445775 r2447198 142 142 'post_category' => $postCates, 143 143 'post_date' => $postDate, 144 ); 144 ); 145 145 146 146 $postID = wp_insert_post($postData); … … 315 315 $images = $request->get_param('images'); 316 316 $postID = $request->get_param('post_id'); 317 $postContent = apply_filters('the_content', get_post_field('post_content', $postID)); 317 $post_content = get_post($postID); 318 $postContent = $post_content->post_content; 319 // $postContent = apply_filters('the_content', get_post_field('post_content', $postID)); 318 320 foreach($images as $image) { 319 321 $type = $image['type']; -
beepress/trunk/beepress.php
r2445775 r2447198 4 4 Plugin URI: http://xingyue.artizen.me?source=wp 5 5 Description: 蜜蜂采集(BeePress) 是一款能够帮助你导入微信公众号文章、知乎专栏文章、简书文章、今日头条文章的插件(支持规则配置采集其他网站文章),可以实现单篇或者批量导入、自动同步文章、采集指定公众号所有历史文章,支持将图片资源保存到本地,同时集成了强大的内容推荐功能。 6 Version: 6.8. 66 Version: 6.8.7 7 7 Author: Bee 8 8 Author URI: http://xingyue.artizen.me?source=wp … … 13 13 * 初始化 14 14 */ 15 define('BEEPRESS_VERSION', '6.8. 6');15 define('BEEPRESS_VERSION', '6.8.7'); 16 16 if(!class_exists('simple_html_dom_node')){ 17 17 require_once("simple_html_dom.php"); -
beepress/trunk/readme.txt
r2445775 r2447198 4 4 Author URI: http://xingyue.artizen.me?source=wp 5 5 Plugin URI: http://xingyue.artizen.me?source=wp 6 Stable tag: 6.8. 66 Stable tag: 6.8.7 7 7 Requires at least: 4.2 8 8 Requires PHP: 5.3.0 9 Tested up to: 5. 4.09 Tested up to: 5.6.0 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 57 57 None 58 58 == Changelog == 59 = 6.8.7 = 60 * 修复自定义模版重复的bug 59 61 = 6.8.6 = 60 62 * 代码优化
Note: See TracChangeset
for help on using the changeset viewer.