Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: xmlrpc_call_success_mw_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
5622
5623           /**
5624            * Fires after a new post has been successfully created via the XML-RPC MovableType API.
5625            *
5626            * @since 3.4.0
5627            *
5628            * @param int   $post_ID ID of the new post.
5629            * @param array $args    An array of arguments to create the new post.
5630            */
5631           do_action( 'xmlrpc_call_success_mw_newPost', $post_ID, $args ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.NotLowercase
5632
5633           return (string) $post_ID;
5634      }
5635
5636      /**
5637       * Adds an enclosure to a post if it's new.
5638       *
5639       * @since 2.8.0
5640       *