Changeset 2195567
- Timestamp:
- 11/18/2019 12:00:09 PM (6 years ago)
- Location:
- easycontent/trunk
- Files:
-
- 3 edited
-
app/Post.php (modified) (1 diff)
-
easycontent-wp.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easycontent/trunk/app/Post.php
r2194825 r2195567 144 144 } 145 145 146 147 $postId = wp_insert_post( [ 148 'ID' => $this->_wpPostObject->ID, 149 'post_status' => $this->_wpPostObject->post_status, 146 $postData = array_merge( get_object_vars( $this->_wpPostObject ), [ 150 147 'post_title' => $article->title, 151 148 'post_excerpt' => $article->excerpt ?: '', 152 149 'post_name' => $article->custom_slug ?: '' 153 150 ] ); 151 152 $postId = wp_update_post( wp_slash( $postData ) ); 154 153 155 154 if ( 0 === $postId ) { -
easycontent/trunk/easycontent-wp.php
r2194825 r2195567 4 4 * Plugin URI: https://easycontent.io 5 5 * Description: Imports articles from EasyContent to your wordpress site and exports articles from your wordpress site to EasyContent 6 * Version: 1.0. 16 * Version: 1.0.2 7 7 * Requires at least: 5.0.7 8 8 * Requires PHP: 5.6 … … 21 21 22 22 if ( ! defined( 'EASYCONTENT_PLUGIN_VERSION' ) ) { 23 define( 'EASYCONTENT_PLUGIN_VERSION', '1.0. 1' );23 define( 'EASYCONTENT_PLUGIN_VERSION', '1.0.2' ); 24 24 } 25 25 -
easycontent/trunk/readme.txt
r2194971 r2195567 6 6 Tested up to: 5.3 7 7 Requires PHP: 5.6 8 Stable tag: 1.0. 18 Stable tag: 1.0.2 9 9 License: GPL-2.0+ 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 61 61 == Changelog == 62 62 63 = 1.0.2 = 64 * Fixed pulling mechanism 65 63 66 = 1.0.1 = 64 67 * Added better support for the Classic editor
Note: See TracChangeset
for help on using the changeset viewer.