Changeset 2972270
- Timestamp:
- 09/27/2023 01:34:39 PM (2 years ago)
- Location:
- sync-post-with-other-site/trunk
- Files:
-
- 3 edited
-
SyncPostWithOtherSite.php (modified) (2 diffs)
-
includes/sps_sync.class.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sync-post-with-other-site/trunk/SyncPostWithOtherSite.php
r2760783 r2972270 4 4 Plugin URI: https://syncpostwithothersite.in/ 5 5 Description: Allows user to sync post with multiple websites. 6 Version: 1.4. 16 Version: 1.4.2 7 7 Author: kp4coder 8 8 Author URI: https://syncpostwithothersite.in/author/ … … 52 52 53 53 global $sps_version; 54 $sps_version = '1.4. 1';54 $sps_version = '1.4.2'; 55 55 56 56 class SyncPostWithOtherSite { -
sync-post-with-other-site/trunk/includes/sps_sync.class.php
r2760783 r2972270 124 124 $response = $this->sps_send_data_to( 'add_update_post', $args, $sps_website ); 125 125 126 if( isset( $response['response']['code'] ) && $response['response']['code'] == 200 ) { 127 $other_site_post_id = $response['body']; 126 if( is_array($response) ) { 127 if( isset( $response['response']['code'] ) && $response['response']['code'] == 200 ) { 128 $other_site_post_id = $response['body']; 129 } 128 130 } 129 131 } -
sync-post-with-other-site/trunk/readme.txt
r2760783 r2972270 4 4 Tags: wp sync post, sync post content, sync post with multiple sites, post attachments, post content, post content sync, migrate post content, moving post data, synchronization post 5 5 Requires at least: 4.5 6 Tested up to: 6. 0.16 Tested up to: 6.3 7 7 Stable tag: 1.3 8 8 License: GPLv2 or later … … 93 93 * Fix: Sync the corrent parent post. 94 94 95 = 1.4.2 - September 27, 2023 = 96 * Fix: small errors 95 97 96 98 == Upgrade notice ==
Note: See TracChangeset
for help on using the changeset viewer.