WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 4804 | * @since 2.3.0 |
| 4805 | * @access private |
| 4806 | * @uses XMLRPC_REQUEST and WP_IMPORTING constants. |
| 4807 | * @uses do_action() Calls 'xmlrpc_publish_post' on post ID if XMLRPC_REQUEST is defined. |
| 4808 | * |
| 4809 | * @param int $post_id The ID in the database table of the post being published |
| 4810 | */ |
| 4811 | function _publish_post_hook($post_id) { |
| 4812 | if ( defined('XMLRPC_REQUEST') ) |
| 4813 | do_action('xmlrpc_publish_post', $post_id); |
| 4814 | |
| 4815 | if ( defined('WP_IMPORTING') ) |
| 4816 | return; |
| 4817 | |
| 4818 | if ( get_option('default_pingback_flag') ) |
| 4819 | add_post_meta( $post_id, '_pingme', '1' ); |
| 4820 | add_post_meta( $post_id, '_encloseme', '1' ); |
| 4821 | |
| 4822 | wp_schedule_single_event(time(), 'do_pings'); |