Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: xmlrpc_call_success_blogger_newPost

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
5066
5067           /**
5068            * Fires after a new post has been successfully created via the XML-RPC Blogger API.
5069            *
5070            * @since 3.4.0
5071            *
5072            * @param int   $post_ID ID of the new post.
5073            * @param array $args    An array of new post arguments.
5074            */
5075           do_action( 'xmlrpc_call_success_blogger_newPost', $post_ID, $args ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.NotLowercase
5076
5077           return $post_ID;
5078      }
5079
5080      /**
5081       * Edit a post.
5082       *
5083       * @since 1.5.0
5084       *