Changeset 2544884
- Timestamp:
- 06/09/2021 08:47:20 AM (5 years ago)
- Location:
- resoc/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
admin/class-resoc-admin.php (modified) (1 diff)
-
resoc.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
resoc/trunk/README.txt
r2544879 r2544884 5 5 Requires at least: 5.0 6 6 Tested up to: 5.7.2 7 Stable tag: 1.0. 07 Stable tag: 1.0.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 81 81 == Changelog == 82 82 83 = 1.0.1 = 84 * Minor fix in post save 85 83 86 = 1.0.0 = 84 87 * Initial version -
resoc/trunk/admin/class-resoc-admin.php
r2544870 r2544884 58 58 59 59 public function save_social_image( $post_ID ) { 60 Resoc_Utils::log("Generate social images for post " . $post_ID ); 60 Resoc_Utils::log( "Generate social images for post " . $post_ID ); 61 62 $post = get_post( $post_ID ); 63 if ( $post->post_type == 'revision' ) { 64 Resoc_Utils::log( "Post " . $post_ID . " is a revision, skip" ); 65 return; 66 } 61 67 62 68 if ( wp_is_post_autosave( $post_ID ) ) { 69 Resoc_Utils::log( "Post " . $post_ID . " is autosaving, skip" ); 63 70 return; 64 71 } -
resoc/trunk/resoc.php
r2544872 r2544884 17 17 * Plugin URI: https://resoc.io/resoc-uri/ 18 18 * Description: This is a short description of what the plugin does. It's displayed in the WordPress admin area. 19 * Version: 1.0. 019 * Version: 1.0.1 20 20 * Author: Resoc 21 21 * Author URI: https://resoc.io/ … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define( 'RESOC_VERSION', '1.0. 0' );38 define( 'RESOC_VERSION', '1.0.1' ); 39 39 40 40 /**
Note: See TracChangeset
for help on using the changeset viewer.