Changeset 21818 for trunk/wp-includes/post.php
- Timestamp:
- 09/11/2012 08:11:39 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/post.php
r21792 r21818 4671 4671 * @access private 4672 4672 * @uses $wpdb 4673 * @uses XMLRPC_REQUEST and APP_REQUEST constants.4673 * @uses XMLRPC_REQUEST constant. 4674 4674 * @uses do_action() Calls 'xmlprc_publish_post' on post ID if XMLRPC_REQUEST is defined. 4675 * @uses do_action() Calls 'app_publish_post' on post ID if APP_REQUEST is defined.4676 4675 * 4677 4676 * @param int $post_id The ID in the database table of the post being published … … 4682 4681 if ( defined('XMLRPC_REQUEST') ) 4683 4682 do_action('xmlrpc_publish_post', $post_id); 4684 if ( defined('APP_REQUEST') )4685 do_action('app_publish_post', $post_id);4686 4683 4687 4684 if ( defined('WP_IMPORTING') )
Note: See TracChangeset
for help on using the changeset viewer.