Changeset 3404037
- Timestamp:
- 11/27/2025 12:02:19 PM (3 months ago)
- Location:
- repostra/trunk
- Files:
-
- 2 edited
-
README.md (modified) (1 diff)
-
repostra.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
repostra/trunk/README.md
r3403945 r3404037 4 4 Requires at least: 6.0 5 5 Tested up to: 6.8 6 Stable tag: 1.0. 76 Stable tag: 1.0.8 7 7 Requires PHP: 8.0 8 8 License: GPLv2 or later -
repostra/trunk/repostra.php
r3403945 r3404037 4 4 * Plugin URI: https://repostra.app 5 5 * Description: Integrate Repostra content creation platform with your WordPress site. Automatically receive and publish blog posts from Repostra. 6 * Version: 1.0. 76 * Version: 1.0.8 7 7 * Author: AWcode Co Ltd 8 8 * License: GPL v2 or later … … 227 227 } 228 228 229 // Get the post URL 230 $post_url = get_permalink($post_id); 231 229 232 return array( 230 233 'success' => true, 231 234 'post_id' => $post_id, 235 'post_url' => $post_url, 236 'url' => $post_url, // Alias for compatibility 232 237 'message' => __('Post created successfully', 'repostra') 233 238 ); … … 280 285 } 281 286 287 // Get the post URL 288 $post_url = get_permalink($post_id); 289 282 290 return array( 283 291 'success' => true, 284 292 'post_id' => $post_id, 293 'post_url' => $post_url, 294 'url' => $post_url, // Alias for compatibility 285 295 'message' => __('Post updated successfully', 'repostra') 286 296 );
Note: See TracChangeset
for help on using the changeset viewer.