Changeset 1372197
- Timestamp:
- 03/16/2016 10:46:50 AM (10 years ago)
- Location:
- wp-syndicate/trunk
- Files:
-
- 4 edited
-
modules/action.php (modified) (1 diff)
-
modules/syndicate.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
wp-syndicate.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-syndicate/trunk/modules/action.php
r1330503 r1372197 211 211 } else { 212 212 update_post_meta( $update_post_id, $slug, 1 ); 213 do_action( 'wp_syndicate_save_post', $update_post_id, $item, $updated );213 do_action( 'wp_syndicate_save_post', $update_post_id, $item, $updated, $post_id ); 214 214 $post_ids[] = $update_post_id; 215 215 } -
wp-syndicate/trunk/modules/syndicate.php
r1330503 r1372197 100 100 <tr><th><?php esc_html_e( 'Basic Auth User ID', WPSYND_DOMAIN ) ?></th><td><input type="text" name="wp_syndicate-basic-auth-user" size="40" value="<?php echo esc_attr( $user_id ); ?>" /></td></tr> 101 101 <tr><th><?php esc_html_e( 'Basic Auth Password', WPSYND_DOMAIN ) ?></th><td><input type="password" name="wp_syndicate-basic-auth-pass" size="40" value="<?php echo esc_attr( $password ); ?>" /></td></tr> 102 102 <?php do_action( 'wp_syndicate_add_metabox' ); ?> 103 103 </table> 104 104 <?php … … 130 130 add_action( 'save_post', array( $this, 'save_meta_box' ) ); 131 131 } 132 133 do_action( 'wp_syndicate_save_meta_box', $post_id ); 132 134 } 133 135 } -
wp-syndicate/trunk/readme.txt
r1330503 r1372197 4 4 Requires at least: 4.3 5 5 Tested up to: 4.4.1 6 Stable tag: 1.1.2 16 Stable tag: 1.1.22 7 7 8 8 == Description == … … 83 83 = 1.1.21 = 84 84 * Fixed menu_position in register_post_type. 85 86 = 1.1.22 = 87 * Add some hook. -
wp-syndicate/trunk/wp-syndicate.php
r1330503 r1372197 5 5 * Description: It is a plug-in that WP Syndicate takes in an RSS feed, it is possible to capture the content of other sites on the WordPress site. 6 6 * Author: horike 7 * Version: 1.1.2 17 * Version: 1.1.22 8 8 * Author URI: http://digitalcube.jp 9 9 * License: GPL2+
Note: See TracChangeset
for help on using the changeset viewer.