Skip to content
Snippets Groups Projects
Commit f597c24b authored by Prasath Nadarajah's avatar Prasath Nadarajah
Browse files

Added method stubs

parent b3028b82
Branches
No related tags found
No related merge requests found
...@@ -262,4 +262,8 @@ class wp_rest_client implements wp_client{ ...@@ -262,4 +262,8 @@ class wp_rest_client implements wp_client{
} }
public function set_options($options, $ext_ID)
{
// TODO: Implement set_options() method.
}
} }
\ No newline at end of file
...@@ -242,4 +242,16 @@ class wp_xmlrpc_client extends WP_HTTP_IXR_Client implements wp_client { ...@@ -242,4 +242,16 @@ class wp_xmlrpc_client extends WP_HTTP_IXR_Client implements wp_client {
} }
/**
* Deletes an existing post in the slave site.
*
* @param array $options Array of options to push to the slave site.
* @param int $ext_ID Slave post ID to push options.
*
* @return boolean true on success false on failure.
*/
public function set_options($options, $ext_ID)
{
// TODO: Implement set_options() method.
}
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment