Plugin Directory

Changeset 1372197


Ignore:
Timestamp:
03/16/2016 10:46:50 AM (10 years ago)
Author:
horike
Message:

update 1.1.22

Location:
wp-syndicate/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-syndicate/trunk/modules/action.php

    r1330503 r1372197  
    211211            } else {
    212212                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 );
    214214                $post_ids[] = $update_post_id;
    215215            }
  • wp-syndicate/trunk/modules/syndicate.php

    r1330503 r1372197  
    100100<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>
    101101<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' ); ?>
    103103</table>
    104104<?php
     
    130130            add_action( 'save_post', array( $this, 'save_meta_box' ) );
    131131        }
     132       
     133        do_action( 'wp_syndicate_save_meta_box', $post_id );
    132134    }
    133135}
  • wp-syndicate/trunk/readme.txt

    r1330503 r1372197  
    44Requires at least: 4.3
    55Tested up to: 4.4.1
    6 Stable tag: 1.1.21
     6Stable tag: 1.1.22
    77
    88== Description ==
     
    8383= 1.1.21 =
    8484* Fixed menu_position in register_post_type.
     85
     86= 1.1.22 =
     87* Add some hook.
  • wp-syndicate/trunk/wp-syndicate.php

    r1330503 r1372197  
    55 * 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.
    66 * Author: horike
    7  * Version: 1.1.21
     7 * Version: 1.1.22
    88 * Author URI: http://digitalcube.jp
    99 * License: GPL2+
Note: See TracChangeset for help on using the changeset viewer.