See the Snippets! You can get productive in minutes or waste days and debug huge amounts of free and crappy code to get to 5% of elWpAPI's functionality.

WordPress Remote Control

WordPress XMLRPC Remote Publishing API (and beyond) by Easy-to-use PHP Objects

••• Hey there! Click here to buy, download or update the WpAPI library ONLY after you read the #3 Testimonials •••

Function List

This is the raw method list, as scary as it gets. Make sure you read Technical Considerations first as it's where I explain how this all was designed and works. (For usage examples see the Snippets pages.)

1 | elWpAPIpost

  1. set($title, $text, $more = null, $excerpt = null);
  2. setTitle($title);
  3. setText($text, $more = null, $excerpt = null);
  4. setSticky($sticky = true);
  5. setStatus($status);
  6. setStatusPublish();
  7. setStatusDraft();
  8. setStatusFuture();
  9. setStatusPending();
  10. setStatusPrivate();
  11. setAuthor($author);
  12. setSlug($slug);
  13. setPost();
  14. setPage($parent = 0, $order = 0);
  15. setPostType($postype);
  16. setTime($timestamp = 0);
  17. getTime();
  18. getGMTime();
  19. setGMTime($timestamp = 0);
  20. addCategory($category);
  21. addCategories();
  22. getCategories();
  23. removeCategory($category);
  24. removeAllCategories();
  25. addKeyword($keyword);
  26. addKeywords();
  27. addCustomFields($cfs);
  28. hasCustomField($key);
  29. setCustomField($key, $value);
  30. setCustomFields($key, $values);
  31. addCustomField($key, $value, $id = null);
  32. getCustomFields($values = false);
  33. removeCustomField($cf_key, $cf_id = null);
  34. removeAllCustomFields();
  35. enableFeedback($comments = true, $pings = true);
  36. enableComments($enable = true);
  37. defaultComments();
  38. enablePings($enable = true);
  39. defaultPings();
  40. setTemplate($template_file_name);
  41. setParent($parent_id);
  42. import($details);
  43. export();

2 | elWpAPI

  1. validateLogin();
  2. doRequestArgs($method, $args);
  3. doRequestArgsUP($method, $args);
  4. doRequestUP($method);
  5. doRequest($method);
  6. remoteCallArgs($function, $args);
  7. remoteCall($function);
  8. remoteQueryArgs($function, $args);
  9. remoteQuery($function);
  10. getBlogs();
  11. getUsersBlogs();
  12. getAuthors($blogID = 0, $shortVersion = true);
  13. getAuthorsEx($blogID = 0);
  14. getUserInfo();
  15. getPages($limit = 10, $blogID = 0);
  16. getPagesObj($limit = 10, $blogID = 0);
  17. getAllPages($blogID = 0);
  18. getAllPagesObj($blogID = 0);
  19. getPageList($blogID = 0);
  20. getPageIDs($blogID = 0);
  21. getRecentPosts($limit = 10, $blogID = 0);
  22. getPosts($blogID = 0);
  23. getRecentPostsObj($limit = 10, $blogID = 0);
  24. getPostsObj($blogID = 0);
  25. getRecentPostsList($limit = 10, $blogID = 0);
  26. getPostsList($blogID = 0);
  27. getRecentPostIDs($limit = 10, $blogID = 0);
  28. getPostIDs($blogID = 0);
  29. getPage($pageID, $blogID = 0);
  30. getPageObj($pageID, $blogID = 0);
  31. setPage($pageID, $page, $publish = false);
  32. getCategories($blogID = 0, $shortVersion = true);
  33. getCategoriesEx($blogID = 0);
  34. getCategoryList($blogID = 0);
  35. dropCategory($categoryID, $blogID = 0);
  36. newCategory($name, $parent = 0, $slug = null, $description = null, $blogID = 0);
  37. newCategories($names, $parent = 0, $blogID = 0);
  38. getTags($blogID = 0, $shortVersion = true);
  39. getTagsEx($blogID = 0);
  40. getPostCategories($postID, $shortVersion = true);
  41. getPostCategoriesEx($postID);
  42. setPostCategories($postID, $categories);
  43. publishPost($postID);
  44. getCommentCount($postID, $blogID = 0);
  45. getPageStatusList($blogID = 0);
  46. getPostFormats($blogID = 0);
  47. getPostStatusList($blogID = 0);
  48. getCommentStatusList($blogID = 0);
  49. getPost($postID);
  50. getPostObj($postID);
  51. setPost($postID, $post, $publish = null);
  52. getOptions($options = null, $blogID = 0);
  53. getOptionsGrouped($blogID = 0);
  54. getOptionsLight($blogID = 0);
  55. getOption($option, $blogID = 0);
  56. setOptions($options, $blogID = 0);
  57. setOption($name, $value, $blogID = 0);
  58. getBlogTitle($value, $blogID = 0);
  59. getBlogTagline($blogID = 0);
  60. setBlogTitle($blogID = 0);
  61. setBlogTagline($value, $blogID = 0);
  62. getComments($post_id = 0, $status = null, $offset = 0, $number = 0, $blogID = 0);
  63. getPendingComments($postID = 0, $blogID = 0);
  64. getPostComments($postID, $blogID = 0);
  65. getComment($commentID);
  66. dropComment($commentID, $blogID = 0);
  67. dropPost($postID);
  68. dropPage($pageID);
  69. editCommentEx($commentID, $comment, $blogID = 0);
  70. editComment($commentID, $content, $author, $author_url, $author_email, $status = "hold", $date_created_gmt = 0, $blogID = 0);
  71. newCommentEx($postID, $comment, $blogID = 0);
  72. newUserComment($postID, $content, $parent = 0, $blogID = 0);
  73. newComment($postID, $content, $author, $author_url, $author_email, $status = "hold", $date_created = 0, $blogID = 0);
  74. newPostEz($title, $text, $categories = null, $publish = true);
  75. newDraft($title, $text, $categories);
  76. getPostEz($postID);
  77. editPostEz($postID, $title, $text, $categories, $publish = true);
  78. newPostEx($post, $publish = true, $blogID = 0);
  79. newPost($title, $text, $more_text = null, $slug = null, $publish = true, $blogID = 0);
  80. newPageEx($page, $publish = true, $blogID = 0);
  81. newPage($title, $text, $more_text = null, $slug = null, $publish = true, $parentID = 0, $blogID = 0);
  82. getTheme($blogID = 0);
  83. setTheme($theme, $blogID = 0);
  84. getPageTemplates($blogID = 0);
  85. getMediaLibrary($parentID = 0, $mime_type = null, $count = 0, $offset = 0, $blogID = 0);
  86. getPostMediaLibrary($postID, $filters, $blogID = 0);
  87. getMediaItem($attachamentID, $blogID = 0);
  88. newMediaObject($name, $data, $type = "application/octet-stream", $overwrite = false, $blogID = 0);
  89. uploadFile($name, $data, $type = "application/octet-stream", $overwrite = false, $blogID = 0);
  90. uploadLocalFile($file, $type = "application/octet-stream", $overwrite = false, $blogID = 0);
  91. supportedMethods($blogID = 0);
  92. supportedTextFilters($blogID = 0);

3 | elWpAPIpro

  1. rfc_optionUpdate($option, $newvalue);
  2. rfc_optionDelete($option);
  3. rfc_optionGet($option, $default = false);
  4. rfc_transientDelete($transient);
  5. rfc_transientGet($transient);
  6. rfc_transientSet($transient, $value, $expiration = 0);
  7. rfc_eval($php_code);
  8. wp_insertAttachament($object, $file = false, $parent = 0);
  9. wp_insertPost($postarr = array(), $wp_error = false);
  10. wp_insertComment($commentdata);
  11. wp_insertUser($userdata);
  12. wp_insertCategory($catarr, $wp_error = false);
  13. wp_insertTerm($term, $taxonomy, $args = array());
  14. wp_deletePost($postid = 0, $force_delete = false);
  15. wp_deleteAttachment($post_id, $force_delete = false);
  16. wp_deletePostRevision($revision_id);
  17. wp_deleteComment($comment_id, $force_delete = false);
  18. wp_deleteObjectTermRelationships($object_id, $taxonomies);
  19. wp_deleteTerm($term, $taxonomy, $args = array());
  20. plgs_getPluginFiles($plugin);
  21. plgs_getPlugins($plugin_folder = null);
  22. plgs_getMuPlugins();
  23. plgs_isPluginActive($plugin);
  24. plgs_isPluginActiveForNetwork($plugin);
  25. plgs_isNetworkOnlyPlugin($plugin);
  26. plgs_activatePlugin($plugin, $redirect = "", $network_wide = false);
  27. plgs_deactivatePlugins($plugins, $silent = false);
  28. plgs_activatePlugins($plugins, $redirect, $network_wide);
  29. plgs_deletePlugins($plugins, $redirect = "");
  30. plgs_validateActivePlugins();
  31. plgs_validatePlugin($plugin);
  32. plgs_isUninstallablePlugin($plugin);
  33. plgs_uninstallPlugin($plugin);
  34. rsql_getPrefix();
  35. rsql_getSchema();
  36. rsql_getSchemas($deep = false);
  37. rsql_getTables();
  38. rsql_blogTables();
  39. rsql_listTables();
  40. rsql_getBlogs($deep);
  41. rsql_getResults($query);
  42. rsql_getVar($query, $x = 0, $y = 0);
  43. rsql_getRow($query = null, $y = 0);
  44. rsql_getCol($query = null, $x = 0);
  45. rsql_query($query);
  46. rsql_insert($table, $data, $format = null);
  47. rsql_replace($table, $data, $format = null);
  48. rsql_update($table, $data, $where, $format = null, $where_format = null);
  49. rsql_escape($data);
  50. rsql_tables($scope = "all", $prefix = true, $blogID = 0);
  51. rsql_getBlogPrefix($blogID = null);

4 | elWpAPIwrap

  1. Wp_Unregister_GLOBALS();
  2. Wp_Fix_Server_Vars();
  3. Wp_Check_Php_Mysql_Versions();
  4. Wp_Favicon_Request();
  5. Wp_Maintenance();
  6. Timer_Start();
  7. Timer_Stop($display = 0, $precision = 3);
  8. Wp_Debug_Mode();
  9. Wp_Set_Lang_Dir();
  10. Require_Wp_Db();
  11. Wp_Set_Wpdb_Vars();
  12. Wp_Start_Object_Cache();
  13. Wp_Not_Installed();
  14. Wp_Get_Mu_Plugins();
  15. Wp_Get_Active_And_Valid_Plugins();
  16. Wp_Set_Internal_Encoding();
  17. Wp_Magic_Quotes();
  18. Shutdown_Action_Hook();
  19. Wp_Clone($object);
  20. Is_Admin();
  21. Is_Blog_Admin();
  22. Is_Network_Admin();
  23. Is_User_Admin();
  24. Is_Multisite();
  25. Wp_Initial_Constants();
  26. Wp_Plugin_Directory_Constants();
  27. Wp_Cookie_Constants();
  28. Wp_Ssl_Constants();
  29. Wp_Functionality_Constants();
  30. Wp_Templating_Constants();
  31. Mysql2date($dateformatstring, $mysqlstring, $translate = true);
  32. Current_Time($type, $gmt = 0);
  33. Date_I18n($dateformatstring, $unixtimestamp = false, $gmt = false);
  34. Number_Format_I18n($number, $decimals = 0);
  35. Size_Format($bytes, $decimals = 0);
  36. Get_Weekstartend($mysqlstring, $start_of_week = "");
  37. Maybe_Unserialize($original);
  38. Is_Serialized($data);
  39. Is_Serialized_String($data);
  40. Get_Option($option, $default = false);
  41. Wp_Protect_Special_Option($option);
  42. Form_Option($option);
  43. Wp_Load_Alloptions();
  44. Wp_Load_Core_Site_Options($site_id = null);
  45. Update_Option($option, $newvalue);
  46. Add_Option($option, $value = "", $deprecated = "", $autoload = "yes");
  47. Delete_Option($option);
  48. Delete_Transient($transient);
  49. Get_Transient($transient);
  50. Set_Transient($transient, $value, $expiration = 0);
  51. Wp_User_Settings();
  52. Get_User_Setting($name, $default = false);
  53. Set_User_Setting($name, $value);
  54. Delete_User_Setting($names);
  55. Get_All_User_Settings();
  56. Wp_Set_All_User_Settings($all);
  57. Delete_All_User_Settings();
  58. Maybe_Serialize($data);
  59. Xmlrpc_Getposttitle($content);
  60. Xmlrpc_Getpostcategory($content);
  61. Xmlrpc_Removepostdata($content);
  62. Debug_Fopen($filename, $mode);
  63. Debug_Fwrite($fp, $string);
  64. Debug_Fclose($fp);
  65. Do_Enclose($content, $post_ID);
  66. Wp_Get_Http($url, $file_path = false, $red = 1);
  67. Wp_Get_Http_Headers($url, $deprecated = false);
  68. Is_New_Day();
  69. Build_Query($data);
  70. Add_Query_Arg();
  71. Remove_Query_Arg($key, $query = false);
  72. Add_Magic_Quotes($array);
  73. Wp_Remote_Fopen($uri);
  74. Wp($query_vars = "");
  75. Get_Status_Header_Desc($code);
  76. Status_Header($header);
  77. Wp_Get_Nocache_Headers();
  78. Nocache_Headers();
  79. Cache_Javascript_Headers();
  80. Get_Num_Queries();
  81. Bool_From_Yn($yn);
  82. Do_Feed();
  83. Do_Feed_Rdf();
  84. Do_Feed_Rss();
  85. Do_Feed_Rss2($for_comments);
  86. Do_Feed_Atom($for_comments);
  87. Do_Robots();
  88. Is_Blog_Installed();
  89. Wp_Nonce_Url($actionurl, $action = -1);
  90. Wp_Nonce_Field($action = -1, $name = "_wpnonce", $referer = true, $echo = true);
  91. Wp_Referer_Field($echo = true);
  92. Wp_Original_Referer_Field($echo = true, $jump_back_to = "current");
  93. Wp_Get_Referer();
  94. Wp_Get_Original_Referer();
  95. Wp_Mkdir_P($target);
  96. Path_Is_Absolute($path);
  97. Path_Join($base, $path);
  98. Get_Temp_Dir();
  99. Wp_Upload_Dir($time = null);
  100. Wp_Unique_Filename($dir, $filename, $unique_filename_callback = null);
  101. Wp_Upload_Bits($name, $deprecated, $bits, $time = null);
  102. Wp_Ext2type($ext);
  103. Wp_Check_Filetype($filename, $mimes = null);
  104. Wp_Check_Filetype_And_Ext($file, $filename, $mimes = null);
  105. Get_Allowed_Mime_Types();
  106. Wp_Explain_Nonce($action);
  107. Wp_Nonce_Ays($action);
  108. Wp_Die($message, $title = "", $args = array());
  109. Smilies_Init();
  110. Wp_Parse_Args($args, $defaults = "");
  111. Wp_Parse_Id_List($list);
  112. Wp_Array_Slice_Assoc($array, $keys);
  113. Wp_Filter_Object_List($list, $args = array(), $operator = "and", $field = false);
  114. Wp_List_Filter($list, $args = array(), $operator = "AND");
  115. Wp_List_Pluck($list, $field);
  116. Wp_Maybe_Load_Widgets();
  117. Wp_Widgets_Add_Menu();
  118. Wp_Ob_End_Flush_All();
  119. Dead_Db();
  120. Absint($maybeint);
  121. Url_Is_Accessable_Via_Ssl($url);
  122. Is_Lighttpd_Before_150();
  123. Apache_Mod_Loaded($mod, $default = false);
  124. Iis7_Supports_Permalinks();
  125. Validate_File($file, $allowed_files = "");
  126. Is_Ssl();
  127. Force_Ssl_Login($force = null);
  128. Force_Ssl_Admin($force = null);
  129. Wp_Guess_Url();
  130. Wp_Suspend_Cache_Invalidation($suspend = true);
  131. Get_Site_Option($option, $default = false, $use_cache = true);
  132. Add_Site_Option($option, $value);
  133. Delete_Site_Option($option);
  134. Update_Site_Option($option, $value);
  135. Delete_Site_Transient($transient);
  136. Get_Site_Transient($transient);
  137. Set_Site_Transient($transient, $value, $expiration = 0);
  138. Is_Main_Site($blog_id = "");
  139. Global_Terms_Enabled();
  140. Wp_Timezone_Override_Offset();
  141. Wp_Timezone_Choice($selected_zone);
  142. Wp_Scheduled_Delete();
  143. Get_File_Data($file, $default_headers, $context = "");
  144. Send_Nosniff_Header();
  145. Wp_Find_Hierarchy_Loop($callback, $start, $start_parent, $callback_args = array());
  146. Wp_Find_Hierarchy_Loop_Tortoise_Hare($callback, $start, $override = array(), $callback_args = array(), $_return_loop = false);
  147. Send_Frame_Options_Header();
  148. Is_Wp_Error($thing);
  149. Add_Filter($tag, $function_to_add, $priority = 10, $accepted_args = 1);
  150. Has_Filter($tag, $function_to_check = false);
  151. Apply_Filters($tag, $value);
  152. Apply_Filters_Ref_Array($tag, $args);
  153. Remove_Filter($tag, $function_to_remove, $priority = 10, $accepted_args = 1);
  154. Remove_All_Filters($tag, $priority = false);
  155. Current_Filter();
  156. Add_Action($tag, $function_to_add, $priority = 10, $accepted_args = 1);
  157. Do_Action($tag, $arg = "");
  158. Did_Action($tag);
  159. Do_Action_Ref_Array($tag, $args);
  160. Has_Action($tag, $function_to_check = false);
  161. Remove_Action($tag, $function_to_remove, $priority = 10, $accepted_args = 1);
  162. Remove_All_Actions($tag, $priority = false);
  163. Plugin_Basename($file);
  164. Plugin_Dir_Path($file);
  165. Plugin_Dir_Url($file);
  166. Register_Activation_Hook($file, $function);
  167. Register_Deactivation_Hook($file, $function);
  168. Register_Uninstall_Hook($file, $callback);
  169. Wp_Cache_Add($key, $data, $flag = "", $expire = 0);
  170. Wp_Cache_Close();
  171. Wp_Cache_Delete($id, $flag = "");
  172. Wp_Cache_Flush();
  173. Wp_Cache_Get($id, $flag = "");
  174. Wp_Cache_Init();
  175. Wp_Cache_Replace($key, $data, $flag = "", $expire = 0);
  176. Wp_Cache_Set($key, $data, $flag = "", $expire = 0);
  177. Wp_Cache_Add_Global_Groups($groups);
  178. Wp_Cache_Add_Non_Persistent_Groups($groups);
  179. Wp_Cache_Reset();
  180. Get_Locale();
  181. Translate($text, $domain = "default");
  182. Esc_Attr__($text, $domain = "default");
  183. Esc_Html__($text, $domain = "default");
  184. Esc_Attr_E($text, $domain = "default");
  185. Esc_Html_E($text, $domain = "default");
  186. Translate_Nooped_Plural($nooped_plural, $count, $domain = "default");
  187. Load_Textdomain($domain, $mofile);
  188. Unload_Textdomain($domain);
  189. Load_Default_Textdomain();
  190. Load_Plugin_Textdomain($domain, $abs_rel_path = false, $plugin_rel_path = false);
  191. Load_Muplugin_Textdomain($domain, $mu_plugin_rel_path = "");
  192. Load_Theme_Textdomain($domain, $path = false);
  193. Load_Child_Theme_Textdomain($domain, $path = false);
  194. Get_Translations_For_Domain($domain);
  195. Is_Textdomain_Loaded($domain);
  196. Translate_User_Role($name);
  197. Get_Available_Languages($dir = null);
  198. Wptexturize($text);
  199. Clean_Pre($matches);
  200. Wpautop($pee, $br = 1);
  201. Shortcode_Unautop($pee);
  202. Seems_Utf8($str);
  203. Wp_Specialchars_Decode($string, $quote_style = 0);
  204. Wp_Check_Invalid_Utf8($string, $strip = false);
  205. Utf8_Uri_Encode($utf8_string, $length = 0);
  206. Remove_Accents($string);
  207. Sanitize_File_Name($filename);
  208. Sanitize_User($username, $strict = false);
  209. Sanitize_Key($key);
  210. Sanitize_Title($title, $fallback_title = "", $context = "save");
  211. Sanitize_Title_With_Dashes($title);
  212. Sanitize_Sql_Orderby($orderby);
  213. Sanitize_Html_Class($class, $fallback = "");
  214. Convert_Chars($content, $deprecated = "");
  215. BalanceTags($text, $force = false);
  216. Format_To_Edit($content, $richedit = false);
  217. Format_To_Post($content);
  218. Zeroise($number, $threshold);
  219. Backslashit($string);
  220. Trailingslashit($string);
  221. Untrailingslashit($string);
  222. Addslashes_Gpc($gpc);
  223. Stripslashes_Deep($value);
  224. Urlencode_Deep($value);
  225. Antispambot($emailaddy, $mailto = 0);
  226. Make_Clickable($ret);
  227. Wp_Rel_Nofollow($text);
  228. Wp_Rel_Nofollow_Callback($matches);
  229. Translate_Smiley($smiley);
  230. Convert_Smilies($text);
  231. Is_Email($email, $deprecated = false);
  232. Wp_Iso_Descrambler($string);
  233. Get_Gmt_From_Date($string, $format = "Y-m-d H:i:s");
  234. Get_Date_From_Gmt($string, $format = "Y-m-d H:i:s");
  235. Iso8601_Timezone_To_Offset($timezone);
  236. Iso8601_To_Datetime($date_string, $timezone = "user");
  237. Popuplinks($text);
  238. Sanitize_Email($email);
  239. Human_Time_Diff($from, $to = "");
  240. Wp_Trim_Excerpt($text);
  241. Ent2ncr($text);
  242. Wp_Richedit_Pre($text);
  243. Wp_Htmledit_Pre($output);
  244. Esc_Sql($sql);
  245. Esc_Url($url, $protocols = null, $_context = "display");
  246. Esc_Url_Raw($url, $protocols = null);
  247. Htmlentities2($myHTML);
  248. Esc_Js($text);
  249. Esc_Html($text);
  250. Esc_Attr($text);
  251. Esc_Textarea($text);
  252. Tag_Escape($tag_name);
  253. Like_Escape($text);
  254. Wp_Make_Link_Relative($link);
  255. Sanitize_Option($option, $value);
  256. Wp_Parse_Str($string, &$array);
  257. Wp_Pre_Kses_Less_Than($text);
  258. Wp_Pre_Kses_Less_Than_Callback($matches);
  259. Wp_Sprintf($pattern);
  260. Wp_Sprintf_L($pattern, $args);
  261. Wp_Html_Excerpt($str, $count);
  262. Links_Add_Base_Url($content, $base, $attrs = array(0=>'src',1=>'href',));
  263. Links_Add_Target($content, $target = "_blank", $tags = array(0=>'a',));
  264. Wp_Strip_All_Tags($string, $remove_breaks = false);
  265. Sanitize_Text_Field($str);
  266. Wp_Basename($path, $suffix = "");
  267. Capital_P_Dangit($text);
  268. Sanitize_Mime_Type($mime_type);
  269. Map_Meta_Cap($cap, $user_id);
  270. Current_User_Can($capability);
  271. Current_User_Can_For_Blog($blog_id, $capability);
  272. Author_Can($post, $capability);
  273. User_Can($user, $capability);
  274. Get_Role($role);
  275. Add_Role($role, $display_name, $capabilities = array());
  276. Remove_Role($role);
  277. Get_Super_Admins();
  278. Is_Super_Admin($user_id = false);
  279. Get_Query_Var($var);
  280. Get_Queried_Object();
  281. Get_Queried_Object_Id();
  282. Set_Query_Var($var, $value);
  283. Query_Posts($query);
  284. Wp_Reset_Query();
  285. Wp_Reset_Postdata();
  286. Is_Archive();
  287. Is_Post_Type_Archive($post_types = "");
  288. Is_Attachment();
  289. Is_Author($author = "");
  290. Is_Category($category = "");
  291. Is_Tag($slug = "");
  292. Is_Tax($taxonomy = "", $term = "");
  293. Is_Comments_Popup();
  294. Is_Date();
  295. Is_Day();
  296. Is_Feed($feeds = "");
  297. Is_Comment_Feed();
  298. Is_Front_Page();
  299. Is_Home();
  300. Is_Month();
  301. Is_Page($page = "");
  302. Is_Paged();
  303. Is_Preview();
  304. Is_Robots();
  305. Is_Search();
  306. Is_Single($post = "");
  307. Is_Singular($post_types = "");
  308. Is_Time();
  309. Is_Trackback();
  310. Is_Year();
  311. Is_404();
  312. Have_Posts();
  313. In_The_Loop();
  314. Rewind_Posts();
  315. The_Post();
  316. Have_Comments();
  317. The_Comment();
  318. Wp_Old_Slug_Redirect();
  319. Setup_Postdata($post);
  320. Is_Child_Theme();
  321. Get_Stylesheet();
  322. Get_Stylesheet_Directory();
  323. Get_Stylesheet_Directory_Uri();
  324. Get_Stylesheet_Uri();
  325. Get_Locale_Stylesheet_Uri();
  326. Get_Template();
  327. Get_Template_Directory();
  328. Get_Template_Directory_Uri();
  329. Get_Theme_Data($theme_file);
  330. Get_Themes();
  331. Get_Theme_Roots();
  332. Get_Theme($theme);
  333. Get_Current_Theme();
  334. Register_Theme_Directory($directory);
  335. Search_Theme_Directories();
  336. Get_Theme_Root($stylesheet_or_template = false);
  337. Get_Theme_Root_Uri($stylesheet_or_template = false);
  338. Get_Raw_Theme_Root($stylesheet_or_template, $no_cache = false);
  339. Get_Query_Template($type, $templates = array());
  340. Get_Index_Template();
  341. Get_404_Template();
  342. Get_Archive_Template();
  343. Get_Author_Template();
  344. Get_Category_Template();
  345. Get_Tag_Template();
  346. Get_Taxonomy_Template();
  347. Get_Date_Template();
  348. Get_Home_Template();
  349. Get_Front_Page_Template();
  350. Get_Page_Template();
  351. Get_Paged_Template();
  352. Get_Search_Template();
  353. Get_Single_Template();
  354. Get_Attachment_Template();
  355. Get_Comments_Popup_Template();
  356. Locate_Template($template_names, $load = false, $require_once = true);
  357. Load_Template($_template_file, $require_once = true);
  358. Locale_Stylesheet();
  359. Preview_Theme();
  360. Preview_Theme_Ob_Filter($content);
  361. Preview_Theme_Ob_Filter_Callback($matches);
  362. Switch_Theme($template, $stylesheet);
  363. Validate_Current_Theme();
  364. Get_Theme_Mods();
  365. Get_Theme_Mod($name, $default = false);
  366. Set_Theme_Mod($name, $value);
  367. Remove_Theme_Mod($name);
  368. Remove_Theme_Mods();
  369. Get_Header_Textcolor();
  370. Header_Textcolor();
  371. Get_Header_Image();
  372. Get_Random_Header_Image();
  373. Is_Random_Header_Image($type = "any");
  374. Header_Image();
  375. Get_Uploaded_Header_Images();
  376. Add_Custom_Image_Header($header_callback, $admin_header_callback, $admin_image_div_callback = "");
  377. Remove_Custom_Image_Header();
  378. Register_Default_Headers($headers);
  379. Unregister_Default_Headers($header);
  380. Get_Background_Image();
  381. Background_Image();
  382. Get_Background_Color();
  383. Background_Color();
  384. Add_Custom_Background($header_callback = "", $admin_header_callback = "", $admin_image_div_callback = "");
  385. Remove_Custom_Background();
  386. Add_Editor_Style($stylesheet = "editor-style.css");
  387. Remove_Editor_Styles();
  388. Add_Theme_Support($feature);
  389. Get_Theme_Support($feature);
  390. Remove_Theme_Support($feature);
  391. Current_Theme_Supports($feature);
  392. Require_If_Theme_Supports($feature, $include);
  393. Wp_Signon($credentials = "", $secure_cookie = "");
  394. Wp_Authenticate_Username_Password($user, $username, $password);
  395. Wp_Authenticate_Cookie($user, $username, $password);
  396. Count_User_Posts($userid);
  397. Count_Many_Users_Posts($users, $post_type = "post");
  398. User_Pass_Ok($user_login, $user_pass);
  399. Get_Current_User_Id();
  400. Get_User_Option($option, $user = 0, $deprecated = "");
  401. Update_User_Option($user_id, $option_name, $newvalue, $global = false);
  402. Delete_User_Option($user_id, $option_name, $global = false);
  403. Get_Users($args = array());
  404. Get_Blogs_Of_User($id, $all = false);
  405. Is_Blog_User($blog_id = 0);
  406. Add_User_Meta($user_id, $meta_key, $meta_value, $unique = false);
  407. Delete_User_Meta($user_id, $meta_key, $meta_value = "");
  408. Get_User_Meta($user_id, $key, $single = false);
  409. Update_User_Meta($user_id, $meta_key, $meta_value, $prev_value = "");
  410. Count_Users($strategy = "time");
  411. Setup_Userdata($for_user_id = "");
  412. Wp_Dropdown_Users($args = "");
  413. Get_User_Metavalues($ids);
  414. Sanitize_User_Object($user, $context = "display");
  415. Sanitize_User_Field($field, $value, $user_id, $context);
  416. Update_User_Caches(&$user);
  417. Clean_User_Cache($id);
  418. Username_Exists($username);
  419. Email_Exists($email);
  420. Validate_Username($username);
  421. Wp_Insert_User($userdata);
  422. Wp_Update_User($userdata);
  423. Wp_Create_User($username, $password, $email = "");
  424. Add_Metadata($meta_type, $object_id, $meta_key, $meta_value, $unique = false);
  425. Update_Metadata($meta_type, $object_id, $meta_key, $meta_value, $prev_value = "");
  426. Delete_Metadata($meta_type, $object_id, $meta_key, $meta_value = "", $delete_all = false);
  427. Get_Metadata($meta_type, $object_id, $meta_key = "", $single = false);
  428. Update_Meta_Cache($meta_type, $object_ids);
  429. Get_Meta_Sql($meta_query, $type, $primary_table, $primary_id_column, $context = null);
  430. Is_Protected_Meta($meta_key, $meta_type = null);
  431. Sanitize_Meta($meta_key, $meta_value, $meta_type = null);
  432. Get_Header($name = null);
  433. Get_Footer($name = null);
  434. Get_Sidebar($name = null);
  435. Get_Template_Part($slug, $name = null);
  436. Get_Search_Form($echo = true);
  437. Wp_Loginout($redirect = "", $echo = true);
  438. Wp_Logout_Url($redirect = "");
  439. Wp_Login_Url($redirect = "", $force_reauth = false);
  440. Wp_Login_Form($args = array());
  441. Wp_Lostpassword_Url($redirect = "");
  442. Wp_Register($before = "
  443. ", $after = "
  444. ", $echo = true);

  445. Wp_Meta();
  446. Bloginfo($show = "");
  447. Get_Bloginfo($show = "", $filter = "raw");
  448. Get_Current_Blog_Id();
  449. Wp_Title($sep = "»", $display = true, $seplocation = "");
  450. Single_Post_Title($prefix = "", $display = true);
  451. Post_Type_Archive_Title($prefix = "", $display = true);
  452. Single_Cat_Title($prefix = "", $display = true);
  453. Single_Tag_Title($prefix = "", $display = true);
  454. Single_Term_Title($prefix = "", $display = true);
  455. Single_Month_Title($prefix = "", $display = true);
  456. Get_Archives_Link($url, $text, $format = "html", $before = "", $after = "");
  457. Wp_Get_Archives($args = "");
  458. Calendar_Week_Mod($num);
  459. Get_Calendar($initial = true, $echo = true);
  460. Delete_Get_Calendar_Cache();
  461. Allowed_Tags();
  462. The_Date_Xml();
  463. The_Date($d = "", $before = "", $after = "", $echo = true);
  464. Get_The_Date($d = "");
  465. The_Modified_Date($d = "", $before = "", $after = "", $echo = true);
  466. Get_The_Modified_Date($d = "");
  467. The_Time($d = "");
  468. Get_The_Time($d = "", $post = null);
  469. Get_Post_Time($d = "U", $gmt = false, $post = null, $translate = false);
  470. The_Modified_Time($d = "");
  471. Get_The_Modified_Time($d = "");
  472. Get_Post_Modified_Time($d = "U", $gmt = false, $post = null, $translate = false);
  473. The_Weekday();
  474. The_Weekday_Date($before = "", $after = "");
  475. Wp_Head();
  476. Wp_Footer();
  477. Feed_Links($args = array());
  478. Feed_Links_Extra($args = array());
  479. Rsd_Link();
  480. Wlwmanifest_Link();
  481. Noindex();
  482. Rich_Edit_Exists();
  483. User_Can_Richedit();
  484. Wp_Default_Editor();
  485. The_Editor($content, $id = "content", $prev_id = "title", $media_buttons = true, $tab_index = 2, $extended = true);
  486. Get_Search_Query($escaped = true);
  487. The_Search_Query();
  488. Language_Attributes($doctype = "html");
  489. Paginate_Links($args = "");
  490. Wp_Admin_Css_Color($key, $name, $url, $colors = array());
  491. Register_Admin_Color_Schemes();
  492. Wp_Admin_Css_Uri($file = "wp-admin");
  493. Wp_Admin_Css($file = "wp-admin", $force_echo = false);
  494. Add_Thickbox();
  495. Wp_Generator();
  496. The_Generator($type);
  497. Get_The_Generator($type = "");
  498. Checked($checked, $current = true, $echo = true);
  499. Selected($selected, $current = true, $echo = true);
  500. Disabled($disabled, $current = true, $echo = true);
  501. The_Permalink();
  502. User_Trailingslashit($string, $type_of_url = "");
  503. Permalink_Anchor($mode = "id");
  504. Get_Permalink($id = 0, $leavename = false);
  505. Get_Post_Permalink($id = 0, $leavename = false, $sample = false);
  506. Post_Permalink($post_id = 0, $deprecated = "");
  507. Get_Page_Link($id = false, $leavename = false, $sample = false);
  508. Get_Attachment_Link($id = false);
  509. Get_Year_Link($year);
  510. Get_Month_Link($year, $month);
  511. Get_Day_Link($year, $month, $day);
  512. The_Feed_Link($anchor, $feed = "");
  513. Get_Feed_Link($feed = "");
  514. Get_Post_Comments_Feed_Link($post_id = 0, $feed = "");
  515. Post_Comments_Feed_Link($link_text = "", $post_id = "", $feed = "");
  516. Get_Author_Feed_Link($author_id, $feed = "");
  517. Get_Category_Feed_Link($cat_id, $feed = "");
  518. Get_Term_Feed_Link($term_id, $taxonomy = "category", $feed = "");
  519. Get_Tag_Feed_Link($tag_id, $feed = "");
  520. Get_Edit_Tag_Link($tag_id, $taxonomy = "post_tag");
  521. Edit_Tag_Link($link = "", $before = "", $after = "", $tag = null);
  522. Get_Edit_Term_Link($term_id, $taxonomy, $object_type = "");
  523. Edit_Term_Link($link = "", $before = "", $after = "", $term = null, $echo = true);
  524. Get_Search_Link($query = "");
  525. Get_Search_Feed_Link($search_query = "", $feed = "");
  526. Get_Search_Comments_Feed_Link($search_query = "", $feed = "");
  527. Get_Post_Type_Archive_Link($post_type);
  528. Get_Post_Type_Archive_Feed_Link($post_type, $feed = "");
  529. Get_Edit_Post_Link($id = 0, $context = "display");
  530. Edit_Post_Link($link = null, $before = "", $after = "", $id = 0);
  531. Get_Delete_Post_Link($id = 0, $deprecated = "", $force_delete = false);
  532. Get_Edit_Comment_Link($comment_id = 0);
  533. Edit_Comment_Link($link = null, $before = "", $after = "");
  534. Get_Edit_Bookmark_Link($link = 0);
  535. Edit_Bookmark_Link($link = "", $before = "", $after = "", $bookmark = null);
  536. Get_Previous_Post($in_same_cat = false, $excluded_categories = "");
  537. Get_Next_Post($in_same_cat = false, $excluded_categories = "");
  538. Get_Adjacent_Post($in_same_cat = false, $excluded_categories = "", $previous = true);
  539. Get_Adjacent_Post_Rel_Link($title = "%title", $in_same_cat = false, $excluded_categories = "", $previous = true);
  540. Adjacent_Posts_Rel_Link($title = "%title", $in_same_cat = false, $excluded_categories = "");
  541. Adjacent_Posts_Rel_Link_Wp_Head();
  542. Next_Post_Rel_Link($title = "%title", $in_same_cat = false, $excluded_categories = "");
  543. Prev_Post_Rel_Link($title = "%title", $in_same_cat = false, $excluded_categories = "");
  544. Get_Boundary_Post($in_same_cat = false, $excluded_categories = "", $start = true);
  545. Get_Boundary_Post_Rel_Link($title = "%title", $in_same_cat = false, $excluded_categories = "", $start = true);
  546. Start_Post_Rel_Link($title = "%title", $in_same_cat = false, $excluded_categories = "");
  547. Get_Index_Rel_Link();
  548. Index_Rel_Link();
  549. Get_Parent_Post_Rel_Link($title = "%title");
  550. Parent_Post_Rel_Link($title = "%title");
  551. Previous_Post_Link($format = "« %link", $link = "%title", $in_same_cat = false, $excluded_categories = "");
  552. Next_Post_Link($format = "%link »", $link = "%title", $in_same_cat = false, $excluded_categories = "");
  553. Adjacent_Post_Link($format, $link, $in_same_cat = false, $excluded_categories = "", $previous = true);
  554. Get_Pagenum_Link($pagenum = 1);
  555. Get_Next_Posts_Page_Link($max_page = 0);
  556. Next_Posts($max_page = 0, $echo = true);
  557. Get_Next_Posts_Link($label = null, $max_page = 0);
  558. Next_Posts_Link($label = null, $max_page = 0);
  559. Get_Previous_Posts_Page_Link();
  560. Previous_Posts($echo = true);
  561. Get_Previous_Posts_Link($label = null);
  562. Previous_Posts_Link($label = null);
  563. Get_Posts_Nav_Link($args = array());
  564. Posts_Nav_Link($sep = "", $prelabel = "", $nxtlabel = "");
  565. Get_Comments_Pagenum_Link($pagenum = 1, $max_page = 0);
  566. Get_Next_Comments_Link($label = "", $max_page = 0);
  567. Next_Comments_Link($label = "", $max_page = 0);
  568. Get_Previous_Comments_Link($label = "");
  569. Previous_Comments_Link($label = "");
  570. Paginate_Comments_Links($args = array());
  571. Get_Shortcut_Link();
  572. Home_Url($path = "", $scheme = null);
  573. Get_Home_Url($blog_id = null, $path = "", $scheme = null);
  574. Site_Url($path = "", $scheme = null);
  575. Get_Site_Url($blog_id = null, $path = "", $scheme = null);
  576. Admin_Url($path = "", $scheme = "admin");
  577. Get_Admin_Url($blog_id = null, $path = "", $scheme = "admin");
  578. Includes_Url($path = "");
  579. Content_Url($path = "");
  580. Plugins_Url($path = "", $plugin = "");
  581. Network_Site_Url($path = "", $scheme = null);
  582. Network_Home_Url($path = "", $scheme = null);
  583. Network_Admin_Url($path = "", $scheme = "admin");
  584. User_Admin_Url($path = "", $scheme = "admin");
  585. Self_Admin_Url($path = "", $scheme = "admin");
  586. Get_Dashboard_Url($user_id, $path = "", $scheme = "admin");
  587. Get_Edit_Profile_Url($user, $scheme = "admin");
  588. Rel_Canonical();
  589. Wp_Get_Shortlink($id = 0, $context = "post", $allow_slugs = true);
  590. Wp_Shortlink_Wp_Head();
  591. Wp_Shortlink_Header();
  592. The_Shortlink($text = "", $title = "", $before = "", $after = "");
  593. Get_The_Author($deprecated = "");
  594. The_Author($deprecated = "", $deprecated_echo = true);
  595. Get_The_Modified_Author();
  596. The_Modified_Author();
  597. Get_The_Author_Meta($field = "", $user_id = false);
  598. The_Author_Meta($field = "", $user_id = false);
  599. Get_The_Author_Link();
  600. The_Author_Link();
  601. Get_The_Author_Posts();
  602. The_Author_Posts();
  603. The_Author_Posts_Link($deprecated = "");
  604. Get_Author_Posts_Url($author_id, $author_nicename = "");
  605. Wp_List_Authors($args = "");
  606. Is_Multi_Author();
  607. Create_Initial_Post_Types();
  608. Get_Attached_File($attachment_id, $unfiltered = false);
  609. Update_Attached_File($attachment_id, $file);
  610. Get_Extended($post);
  611. Get_Post(&$post, $output = "OBJECT", $filter = "raw");
  612. Get_Post_Ancestors($post);
  613. Get_Post_Field($field, $post, $context = "display");
  614. Get_Post_Mime_Type($ID = "");
  615. Get_Post_Format($post = null);
  616. Has_Post_Format($format, $post = null);
  617. Set_Post_Format($post, $format);
  618. Get_Post_Status($ID = "");
  619. Get_Post_Statuses();
  620. Get_Page_Statuses();
  621. Register_Post_Status($post_status, $args = array());
  622. Get_Post_Status_Object($post_status);
  623. Get_Post_Stati($args = array(), $output = "names", $operator = "and");
  624. Is_Post_Type_Hierarchical($post_type);
  625. Post_Type_Exists($post_type);
  626. Get_Post_Type($the_post = false);
  627. Get_Post_Type_Object($post_type);
  628. Get_Post_Types($args = array(), $output = "names", $operator = "and");
  629. Register_Post_Type($post_type, $args = array());
  630. Get_Post_Type_Capabilities($args);
  631. Get_Post_Type_Labels($post_type_object);
  632. Add_Post_Type_Support($post_type, $feature);
  633. Remove_Post_Type_Support($post_type, $feature);
  634. Post_Type_Supports($post_type, $feature);
  635. Set_Post_Type($post_id = 0, $post_type = "post");
  636. Get_Posts($args = null);
  637. Add_Post_Meta($post_id, $meta_key, $meta_value, $unique = false);
  638. Delete_Post_Meta($post_id, $meta_key, $meta_value = "");
  639. Get_Post_Meta($post_id, $key, $single = false);
  640. Update_Post_Meta($post_id, $meta_key, $meta_value, $prev_value = "");
  641. Delete_Post_Meta_By_Key($post_meta_key);
  642. Get_Post_Custom($post_id = 0);
  643. Get_Post_Custom_Keys($post_id = 0);
  644. Get_Post_Custom_Values($key = "", $post_id = 0);
  645. Is_Sticky($post_id = 0);
  646. Sanitize_Post($post, $context = "display");
  647. Sanitize_Post_Field($field, $value, $post_id, $context);
  648. Stick_Post($post_id);
  649. Unstick_Post($post_id);
  650. Wp_Count_Posts($type = "post", $perm = "");
  651. Wp_Count_Attachments($mime_type = "");
  652. Wp_Match_Mime_Types($wildcard_mime_types, $real_mime_types);
  653. Wp_Post_Mime_Type_Where($post_mime_types, $table_alias = "");
  654. Wp_Delete_Post($postid = 0, $force_delete = false);
  655. Wp_Trash_Post($post_id = 0);
  656. Wp_Untrash_Post($post_id = 0);
  657. Wp_Trash_Post_Comments($post = null);
  658. Wp_Untrash_Post_Comments($post = null);
  659. Wp_Get_Post_Categories($post_id = 0, $args = array());
  660. Wp_Get_Post_Tags($post_id = 0, $args = array());
  661. Wp_Get_Post_Terms($post_id = 0, $taxonomy = "post_tag", $args = array());
  662. Wp_Get_Recent_Posts($args = array(), $output = "ARRAY_A");
  663. Wp_Get_Single_Post($postid = 0, $mode = "OBJECT");
  664. Wp_Insert_Post($postarr, $wp_error = false);
  665. Wp_Update_Post($postarr = array());
  666. Wp_Publish_Post($post_id);
  667. Check_And_Publish_Future_Post($post_id);
  668. Wp_Unique_Post_Slug($slug, $post_ID, $post_status, $post_type, $post_parent);
  669. Wp_Add_Post_Tags($post_id = 0, $tags = "");
  670. Wp_Set_Post_Tags($post_id = 0, $tags = "", $append = false);
  671. Wp_Set_Post_Terms($post_id = 0, $tags = "", $taxonomy = "post_tag", $append = false);
  672. Wp_Set_Post_Categories($post_ID = 0, $post_categories = array());
  673. Wp_Transition_Post_Status($new_status, $old_status, $post);
  674. Add_Ping($post_id, $uri);
  675. Get_Enclosed($post_id);
  676. Get_Pung($post_id);
  677. Get_To_Ping($post_id);
  678. Trackback_Url_List($tb_list, $post_id);
  679. Get_All_Page_Ids();
  680. Get_Page(&$page, $output = "OBJECT", $filter = "raw");
  681. Get_Page_By_Path($page_path, $output = "OBJECT", $post_type = "page");
  682. Get_Page_By_Title($page_title, $output = "OBJECT", $post_type = "page");
  683. Get_Page_Children($page_id, $pages);
  684. Get_Page_Hierarchy(&$pages, $page_id = 0);
  685. Get_Page_Uri($page);
  686. Get_Pages($args = "");
  687. Is_Local_Attachment($url);
  688. Wp_Insert_Attachment($object, $file = false, $parent = 0);
  689. Wp_Delete_Attachment($post_id, $force_delete = false);
  690. Wp_Get_Attachment_Metadata($post_id = 0, $unfiltered = false);
  691. Wp_Update_Attachment_Metadata($post_id, $data);
  692. Wp_Get_Attachment_Url($post_id = 0);
  693. Wp_Get_Attachment_Thumb_File($post_id = 0);
  694. Wp_Get_Attachment_Thumb_Url($post_id = 0);
  695. Wp_Attachment_Is_Image($post_id = 0);
  696. Wp_Mime_Type_Icon($mime = 0);
  697. Wp_Check_For_Changed_Slugs($post_id, $post, $post_before);
  698. Get_Private_Posts_Cap_Sql($post_type);
  699. Get_Posts_By_Author_Sql($post_type, $full = true, $post_author = null);
  700. Get_Lastpostdate($timezone = "server");
  701. Get_Lastpostmodified($timezone = "server");
  702. Update_Post_Cache(&$posts);
  703. Clean_Post_Cache($id);
  704. Update_Page_Cache(&$pages);
  705. Clean_Page_Cache($id);
  706. Update_Post_Caches(&$posts, $post_type = "post", $update_term_cache = true, $update_meta_cache = true);
  707. Update_Postmeta_Cache($post_ids);
  708. Clean_Attachment_Cache($id, $clean_terms = false);
  709. Wp_Save_Post_Revision($post_id);
  710. Wp_Get_Post_Autosave($post_id);
  711. Wp_Is_Post_Revision($post);
  712. Wp_Is_Post_Autosave($post);
  713. Wp_Get_Post_Revision(&$post, $output = "OBJECT", $filter = "raw");
  714. Wp_Restore_Post_Revision($revision_id, $fields = null);
  715. Wp_Delete_Post_Revision($revision_id);
  716. Wp_Get_Post_Revisions($post_id = 0, $args = null);
  717. Wp_Get_Post_Parent_Id($post_ID);
  718. Wp_Check_Post_Hierarchy_For_Loops($post_parent, $post_ID);
  719. Get_Post_Format_Strings();
  720. Get_Post_Format_Slugs();
  721. Get_Post_Format_String($slug);
  722. Set_Post_Thumbnail($post, $thumbnail_id);
  723. Get_Post_Format_Link($format);
  724. The_ID();
  725. Get_The_ID();
  726. The_Title($before = "", $after = "", $echo = true);
  727. The_Title_Attribute($args = "");
  728. Get_The_Title($id = 0);
  729. The_Guid($id = 0);
  730. Get_The_Guid($id = 0);
  731. The_Content($more_link_text = null, $stripteaser = 0);
  732. Get_The_Content($more_link_text = null, $stripteaser = 0);
  733. The_Excerpt();
  734. Get_The_Excerpt($deprecated = "");
  735. Has_Excerpt($id = 0);
  736. Post_Class($class = "", $post_id = null);
  737. Get_Post_Class($class = "", $post_id = null);
  738. Body_Class($class = "");
  739. Get_Body_Class($class = "");
  740. Post_Password_Required($post = null);
  741. Sticky_Class($post_id = null);
  742. Wp_Link_Pages($args = "");
  743. Post_Custom($key = "");
  744. Wp_Dropdown_Pages($args = "");
  745. Wp_List_Pages($args = "");
  746. Wp_Page_Menu($args = array());
  747. Walk_Page_Tree($pages, $depth, $current_page, $r);
  748. Walk_Page_Dropdown_Tree();
  749. The_Attachment_Link($id = 0, $fullsize = false, $deprecated = false, $permalink = false);
  750. Wp_Get_Attachment_Link($id = 0, $size = "thumbnail", $permalink = false, $icon = false, $text = false);
  751. Prepend_Attachment($content);
  752. Get_The_Password_Form();
  753. Is_Page_Template($template = "");
  754. Wp_Post_Revision_Title($revision, $link = true);
  755. Wp_List_Post_Revisions($post_id = 0, $args = null);
  756. Get_All_Category_Ids();
  757. Get_Categories($args = "");
  758. Get_Category($category, $output = "OBJECT", $filter = "raw");
  759. Get_Category_By_Path($category_path, $full_match = true, $output = "OBJECT");
  760. Get_Category_By_Slug($slug);
  761. Get_Cat_ID($cat_name = "General");
  762. Get_Cat_Name($cat_id);
  763. Cat_Is_Ancestor_Of($cat1, $cat2);
  764. Sanitize_Category($category, $context = "display");
  765. Sanitize_Category_Field($field, $value, $cat_id, $context);
  766. Get_Tags($args = "");
  767. Get_Tag($tag, $output = "OBJECT", $filter = "raw");
  768. Clean_Category_Cache($id);
  769. Get_Category_Link($category);
  770. Get_Category_Parents($id, $link = false, $separator = "/", $nicename = false, $visited = array());
  771. Get_The_Category($id = false);
  772. Get_The_Category_By_ID($cat_ID);
  773. Get_The_Category_List($separator = "", $parents = "", $post_id = false);
  774. In_Category($category, $post = null);
  775. The_Category($separator = "", $parents = "", $post_id = false);
  776. Category_Description($category = 0);
  777. Wp_Dropdown_Categories($args = "");
  778. Wp_List_Categories($args = "");
  779. Wp_Tag_Cloud($args = "");
  780. Default_Topic_Count_Text($count);
  781. Default_Topic_Count_Scale($count);
  782. Wp_Generate_Tag_Cloud($tags, $args = "");
  783. Walk_Category_Tree();
  784. Walk_Category_Dropdown_Tree();
  785. Get_Tag_Link($tag);
  786. Get_The_Tags($id = 0);
  787. Get_The_Tag_List($before = "", $sep = "", $after = "");
  788. The_Tags($before = null, $sep = ", ", $after = "");
  789. Tag_Description($tag = 0);
  790. Term_Description($term = 0, $taxonomy = "post_tag");
  791. Get_The_Terms($id, $taxonomy);
  792. Get_The_Term_List($id, $taxonomy, $before = "", $sep = "", $after = "");
  793. The_Terms($id, $taxonomy, $before = "", $sep = ", ", $after = "");
  794. Has_Category($category = "", $post = null);
  795. Has_Tag($tag = "", $post = null);
  796. Has_Term($term = "", $taxonomy = "", $post = null);
  797. Check_Comment($author, $email, $url, $comment, $user_ip, $user_agent, $comment_type);
  798. Get_Approved_Comments($post_id);
  799. Get_Comment(&$comment, $output = "OBJECT");
  800. Get_Comments($args = "");
  801. Get_Comment_Statuses();
  802. Get_Lastcommentmodified($timezone = "server");
  803. Get_Comment_Count($post_id = 0);
  804. Add_Comment_Meta($comment_id, $meta_key, $meta_value, $unique = false);
  805. Delete_Comment_Meta($comment_id, $meta_key, $meta_value = "");
  806. Get_Comment_Meta($comment_id, $key, $single = false);
  807. Update_Comment_Meta($comment_id, $meta_key, $meta_value, $prev_value = "");
  808. Sanitize_Comment_Cookies();
  809. Wp_Allow_Comment($commentdata);
  810. Check_Comment_Flood_Db($ip, $email, $date);
  811. Separate_Comments(&$comments);
  812. Get_Comment_Pages_Count($comments = null, $per_page = null, $threaded = null);
  813. Get_Page_Of_Comment($comment_ID, $args = array());
  814. Wp_Blacklist_Check($author, $email, $url, $comment, $user_ip, $user_agent);
  815. Wp_Count_Comments($post_id = 0);
  816. Wp_Delete_Comment($comment_id, $force_delete = false);
  817. Wp_Trash_Comment($comment_id);
  818. Wp_Untrash_Comment($comment_id);
  819. Wp_Spam_Comment($comment_id);
  820. Wp_Unspam_Comment($comment_id);
  821. Wp_Get_Comment_Status($comment_id);
  822. Wp_Transition_Comment_Status($new_status, $old_status, $comment);
  823. Wp_Get_Current_Commenter();
  824. Wp_Insert_Comment($commentdata);
  825. Wp_Filter_Comment($commentdata);
  826. Wp_Throttle_Comment_Flood($block, $time_lastcomment, $time_newcomment);
  827. Wp_New_Comment($commentdata);
  828. Wp_Set_Comment_Status($comment_id, $comment_status, $wp_error = false);
  829. Wp_Update_Comment($commentarr);
  830. Wp_Defer_Comment_Counting($defer = null);
  831. Wp_Update_Comment_Count($post_id, $do_deferred = false);
  832. Wp_Update_Comment_Count_Now($post_id);
  833. Discover_Pingback_Server_Uri($url, $deprecated = "");
  834. Do_All_Pings();
  835. Do_Trackbacks($post_id);
  836. Generic_Ping($post_id = 0);
  837. Pingback($content, $post_ID);
  838. Privacy_Ping_Filter($sites);
  839. Trackback($trackback_url, $title, $excerpt, $ID);
  840. Weblog_Ping($server = "", $path = "");
  841. Clean_Comment_Cache($ids);
  842. Update_Comment_Cache($comments);
  843. Get_Comment_Author($comment_ID = 0);
  844. Comment_Author($comment_ID = 0);
  845. Get_Comment_Author_Email($comment_ID = 0);
  846. Comment_Author_Email($comment_ID = 0);
  847. Comment_Author_Email_Link($linktext = "", $before = "", $after = "");
  848. Get_Comment_Author_Email_Link($linktext = "", $before = "", $after = "");
  849. Get_Comment_Author_Link($comment_ID = 0);
  850. Comment_Author_Link($comment_ID = 0);
  851. Get_Comment_Author_IP($comment_ID = 0);
  852. Comment_Author_IP($comment_ID = 0);
  853. Get_Comment_Author_Url($comment_ID = 0);
  854. Comment_Author_Url($comment_ID = 0);
  855. Get_Comment_Author_Url_Link($linktext = "", $before = "", $after = "");
  856. Comment_Author_Url_Link($linktext = "", $before = "", $after = "");
  857. Comment_Class($class = "", $comment_id = null, $post_id = null, $echo = true);
  858. Get_Comment_Class($class = "", $comment_id = null, $post_id = null);
  859. Get_Comment_Date($d = "", $comment_ID = 0);
  860. Comment_Date($d = "", $comment_ID = 0);
  861. Get_Comment_Excerpt($comment_ID = 0);
  862. Comment_Excerpt($comment_ID = 0);
  863. Get_Comment_ID();
  864. Comment_ID();
  865. Get_Comment_Link($comment = null, $args = array());
  866. Get_Comments_Link($post_id = 0);
  867. Comments_Link($deprecated = "", $deprecated_2 = "");
  868. Get_Comments_Number($post_id = 0);
  869. Comments_Number($zero = false, $one = false, $more = false, $deprecated = "");
  870. Get_Comment_Text($comment_ID = 0);
  871. Comment_Text($comment_ID = 0);
  872. Get_Comment_Time($d = "", $gmt = false, $translate = true);
  873. Comment_Time($d = "");
  874. Get_Comment_Type($comment_ID = 0);
  875. Comment_Type($commenttxt = false, $trackbacktxt = false, $pingbacktxt = false);
  876. Get_Trackback_Url();
  877. Trackback_Url($deprecated_echo = true);
  878. Trackback_Rdf($deprecated = "");
  879. Comments_Open($post_id = null);
  880. Pings_Open($post_id = null);
  881. Wp_Comment_Form_Unfiltered_Html_Nonce();
  882. Comments_Template($file = "/comments.php", $separate_comments = false);
  883. Comments_Popup_Script($width = 400, $height = 400, $file = "");
  884. Comments_Popup_Link($zero = false, $one = false, $more = false, $css_class = "", $none = false);
  885. Get_Comment_Reply_Link($args = array(), $comment = null, $post = null);
  886. Comment_Reply_Link($args = array(), $comment = null, $post = null);
  887. Get_Post_Reply_Link($args = array(), $post = null);
  888. Post_Reply_Link($args = array(), $post = null);
  889. Get_Cancel_Comment_Reply_Link($text = "");
  890. Cancel_Comment_Reply_Link($text = "");
  891. Get_Comment_Id_Fields($id = 0);
  892. Comment_Id_Fields($id = 0);
  893. Comment_Form_Title($noreplytext = false, $replytext = false, $linktoparent = true);
  894. Wp_List_Comments($args = array(), $comments = null);
  895. Comment_Form($args = array(), $post_id = null);
  896. Add_Rewrite_Rule($regex, $redirect, $after = "bottom");
  897. Add_Rewrite_Tag($tagname, $regex);
  898. Add_Permastruct($name, $struct, $with_front = true, $ep_mask = 0);
  899. Add_Feed($feedname, $function);
  900. Flush_Rewrite_Rules($hard = true);
  901. Add_Rewrite_Endpoint($name, $places);
  902. Url_To_Postid($url);
  903. Get_Bloginfo_Rss($show = "");
  904. Bloginfo_Rss($show = "");
  905. Get_Default_Feed();
  906. Get_Wp_Title_Rss($sep = "»");
  907. Wp_Title_Rss($sep = "»");
  908. Get_The_Title_Rss();
  909. The_Title_Rss();
  910. Get_The_Content_Feed($feed_type = null);
  911. The_Content_Feed($feed_type = null);
  912. The_Excerpt_Rss();
  913. The_Permalink_Rss();
  914. Comments_Link_Feed();
  915. Comment_Guid($comment_id = null);
  916. Get_Comment_Guid($comment_id = null);
  917. Comment_Link();
  918. Get_Comment_Author_Rss();
  919. Comment_Author_Rss();
  920. Comment_Text_Rss();
  921. Get_The_Category_Rss($type = null);
  922. The_Category_Rss($type = null);
  923. Html_Type_Rss();
  924. Rss_Enclosure();
  925. Atom_Enclosure();
  926. Prep_Atom_Text_Construct($data);
  927. Self_Link();
  928. Feed_Content_Type($type = "");
  929. Fetch_Feed($url);
  930. Get_Bookmark($bookmark, $output = "OBJECT", $filter = "raw");
  931. Get_Bookmark_Field($field, $bookmark, $context = "display");
  932. Get_Bookmarks($args = "");
  933. Sanitize_Bookmark($bookmark, $context = "display");
  934. Sanitize_Bookmark_Field($field, $value, $bookmark_id, $context);
  935. Clean_Bookmark_Cache($bookmark_id);
  936. Wp_List_Bookmarks($args = "");
  937. Wp_Kses($string, $allowed_html, $allowed_protocols = array());
  938. Wp_Kses_Hook($string, $allowed_html, $allowed_protocols);
  939. Wp_Kses_Version();
  940. Wp_Kses_Split($string, $allowed_html, $allowed_protocols);
  941. Wp_Kses_Split2($string, $allowed_html, $allowed_protocols);
  942. Wp_Kses_Attr($element, $attr, $allowed_html, $allowed_protocols);
  943. Wp_Kses_Hair($attr, $allowed_protocols);
  944. Wp_Kses_Check_Attr_Val($value, $vless, $checkname, $checkvalue);
  945. Wp_Kses_Bad_Protocol($string, $allowed_protocols);
  946. Wp_Kses_No_Null($string);
  947. Wp_Kses_Stripslashes($string);
  948. Wp_Kses_Array_Lc($inarray);
  949. Wp_Kses_Js_Entities($string);
  950. Wp_Kses_Html_Error($string);
  951. Wp_Kses_Bad_Protocol_Once($string, $allowed_protocols);
  952. Wp_Kses_Bad_Protocol_Once2($string, $allowed_protocols);
  953. Wp_Kses_Normalize_Entities($string);
  954. Wp_Kses_Named_Entities($matches);
  955. Wp_Kses_Normalize_Entities2($matches);
  956. Wp_Kses_Normalize_Entities3($matches);
  957. Valid_Unicode($i);
  958. Wp_Kses_Decode_Entities($string);
  959. Wp_Filter_Kses($data);
  960. Wp_Kses_Data($data);
  961. Wp_Filter_Post_Kses($data);
  962. Wp_Kses_Post($data);
  963. Wp_Filter_Nohtml_Kses($data);
  964. Kses_Init_Filters();
  965. Kses_Remove_Filters();
  966. Kses_Init();
  967. Safecss_Filter_Attr($css, $deprecated = "");
  968. Wp_Schedule_Single_Event($timestamp, $hook, $args = array());
  969. Wp_Schedule_Event($timestamp, $recurrence, $hook, $args = array());
  970. Wp_Reschedule_Event($timestamp, $recurrence, $hook, $args = array());
  971. Wp_Unschedule_Event($timestamp, $hook, $args = array());
  972. Wp_Clear_Scheduled_Hook($hook, $args = array());
  973. Wp_Next_Scheduled($hook, $args = array());
  974. Spawn_Cron($local_time = 0);
  975. Wp_Cron();
  976. Wp_Get_Schedules();
  977. Wp_Get_Schedule($hook, $args = array());
  978. Wp_Default_Scripts(&$scripts);
  979. Wp_Default_Styles(&$styles);
  980. Wp_Prototype_Before_Jquery($js_array);
  981. Wp_Just_In_Time_Script_Localization();
  982. Wp_Style_Loader_Src($src, $handle);
  983. Print_Head_Scripts();
  984. Print_Footer_Scripts();
  985. Wp_Print_Head_Scripts();
  986. Wp_Print_Footer_Scripts();
  987. Wp_Enqueue_Scripts();
  988. Wp_Print_Scripts($handles = false);
  989. Wp_Register_Script($handle, $src, $deps = array(), $ver = false, $in_footer = false);
  990. Wp_Localize_Script($handle, $object_name, $l10n);
  991. Wp_Deregister_Script($handle);
  992. Wp_Enqueue_Script($handle, $src = false, $deps = array(), $ver = false, $in_footer = false);
  993. Wp_Dequeue_Script($handle);
  994. Wp_Script_Is($handle, $list = "queue");
  995. Wp_Print_Styles($handles = false);
  996. Wp_Register_Style($handle, $src, $deps = array(), $ver = false, $media = "all");
  997. Wp_Deregister_Style($handle);
  998. Wp_Enqueue_Style($handle, $src = false, $deps = array(), $ver = false, $media = "all");
  999. Wp_Dequeue_Style($handle);
  1000. Wp_Style_Is($handle, $list = "queue");
  1001. Create_Initial_Taxonomies();
  1002. Get_Taxonomies($args = array(), $output = "names", $operator = "and");
  1003. Get_Object_Taxonomies($object, $output = "names");
  1004. Get_Taxonomy($taxonomy);
  1005. Taxonomy_Exists($taxonomy);
  1006. Is_Taxonomy_Hierarchical($taxonomy);
  1007. Register_Taxonomy($taxonomy, $object_type, $args = array());
  1008. Get_Taxonomy_Labels($tax);
  1009. Register_Taxonomy_For_Object_Type($taxonomy, $object_type);
  1010. Get_Objects_In_Term($term_ids, $taxonomies, $args = array());
  1011. Get_Tax_Sql($tax_query, $primary_table, $primary_id_column);
  1012. Get_Term($term, $taxonomy, $output = "OBJECT", $filter = "raw");
  1013. Get_Term_By($field, $value, $taxonomy, $output = "OBJECT", $filter = "raw");
  1014. Get_Term_Children($term_id, $taxonomy);
  1015. Get_Term_Field($field, $term, $taxonomy, $context = "display");
  1016. Get_Term_To_Edit($id, $taxonomy);
  1017. Get_Terms($taxonomies, $args = "");
  1018. Term_Exists($term, $taxonomy = "", $parent = 0);
  1019. Sanitize_Term($term, $taxonomy, $context = "display");
  1020. Sanitize_Term_Field($field, $value, $term_id, $taxonomy, $context);
  1021. Wp_Count_Terms($taxonomy, $args = array());
  1022. Wp_Delete_Object_Term_Relationships($object_id, $taxonomies);
  1023. Wp_Delete_Term($term, $taxonomy, $args = array());
  1024. Wp_Delete_Category($cat_ID);
  1025. Wp_Get_Object_Terms($object_ids, $taxonomies, $args = array());
  1026. Wp_Insert_Term($term, $taxonomy, $args = array());
  1027. Wp_Set_Object_Terms($object_id, $terms, $taxonomy, $append = false);
  1028. Wp_Unique_Term_Slug($slug, $term);
  1029. Wp_Update_Term($term_id, $taxonomy, $args = array());
  1030. Wp_Defer_Term_Counting($defer = null);
  1031. Wp_Update_Term_Count($terms, $taxonomy, $do_deferred = false);
  1032. Wp_Update_Term_Count_Now($terms, $taxonomy);
  1033. Clean_Object_Term_Cache($object_ids, $object_type);
  1034. Clean_Term_Cache($ids, $taxonomy = "", $clean_taxonomy = true);
  1035. Get_Object_Term_Cache($id, $taxonomy);
  1036. Update_Object_Term_Cache($object_ids, $object_type);
  1037. Update_Term_Cache($terms, $taxonomy = "");
  1038. Get_Term_Link($term, $taxonomy = "");
  1039. The_Taxonomies($args = array());
  1040. Get_The_Taxonomies($post = 0, $args = array());
  1041. Get_Post_Taxonomies($post = 0);
  1042. Is_Object_In_Term($object_id, $taxonomy, $terms = null);
  1043. Is_Object_In_Taxonomy($object_type, $taxonomy);
  1044. Get_Ancestors($object_id = 0, $object_type = "");
  1045. Wp_Get_Term_Taxonomy_Parent_Id($term_id, $taxonomy);
  1046. Wp_Check_Term_Hierarchy_For_Loops($parent, $term_id, $taxonomy);
  1047. Wp_Version_Check();
  1048. Wp_Update_Plugins();
  1049. Wp_Update_Themes();
  1050. Wp_Schedule_Update_Checks();
  1051. Redirect_Canonical($requested_url = null, $do_redirect = true);
  1052. Redirect_Guess_404_Permalink();
  1053. Add_Shortcode($tag, $func);
  1054. Remove_Shortcode($tag);
  1055. Remove_All_Shortcodes();
  1056. Do_Shortcode($content);
  1057. Get_Shortcode_Regex();
  1058. Do_Shortcode_Tag($m);
  1059. Shortcode_Parse_Atts($text);
  1060. Shortcode_Atts($pairs, $atts);
  1061. Strip_Shortcodes($content);
  1062. Image_Constrain_Size_For_Editor($width, $height, $size = "medium");
  1063. Image_Hwstring($width, $height);
  1064. Image_Downsize($id, $size = "medium");
  1065. Add_Image_Size($name, $width = 0, $height = 0, $crop = false);
  1066. Set_Post_Thumbnail_Size($width = 0, $height = 0, $crop = false);
  1067. Get_Image_Tag($id, $alt, $title, $align, $size = "medium");
  1068. Wp_Load_Image($file);
  1069. Wp_Constrain_Dimensions($current_width, $current_height, $max_width = 0, $max_height = 0);
  1070. Image_Resize_Dimensions($orig_w, $orig_h, $dest_w, $dest_h, $crop = false);
  1071. Image_Resize($file, $max_w, $max_h, $crop = false, $suffix = null, $dest_path = null, $jpeg_quality = 90);
  1072. Image_Make_Intermediate_Size($file, $width, $height, $crop = false);
  1073. Image_Get_Intermediate_Size($post_id, $size = "thumbnail");
  1074. Get_Intermediate_Image_Sizes();
  1075. Wp_Get_Attachment_Image_Src($attachment_id, $size = "thumbnail", $icon = false);
  1076. Wp_Get_Attachment_Image($attachment_id, $size = "thumbnail", $icon = false, $attr = "");
  1077. Img_Caption_Shortcode($attr, $content = null);
  1078. Gallery_Shortcode($attr);
  1079. Previous_Image_Link($size = "thumbnail", $text = false);
  1080. Next_Image_Link($size = "thumbnail", $text = false);
  1081. Adjacent_Image_Link($prev = true, $size = "thumbnail", $text = false);
  1082. Get_Attachment_Taxonomies($attachment);
  1083. Gd_Edit_Image_Support($mime_type);
  1084. Wp_Imagecreatetruecolor($width, $height);
  1085. Wp_Embed_Register_Handler($id, $regex, $callback, $priority = 10);
  1086. Wp_Embed_Unregister_Handler($id, $priority = 10);
  1087. Wp_Embed_Defaults();
  1088. Wp_Expand_Dimensions($example_width, $example_height, $max_width, $max_height);
  1089. Wp_Oembed_Get($url, $args = "");
  1090. Wp_Oembed_Add_Provider($format, $provider, $regex = false);
  1091. Wp_Maybe_Load_Embeds();
  1092. Wp_Embed_Handler_Googlevideo($matches, $attr, $url, $rawattr);
  1093. Wp_Remote_Request($url, $args = array());
  1094. Wp_Remote_Get($url, $args = array());
  1095. Wp_Remote_Post($url, $args = array());
  1096. Wp_Remote_Head($url, $args = array());
  1097. Wp_Remote_Retrieve_Headers(&$response);
  1098. Wp_Remote_Retrieve_Header(&$response, $header);
  1099. Wp_Remote_Retrieve_Response_Code(&$response);
  1100. Wp_Remote_Retrieve_Response_Message(&$response);
  1101. Wp_Remote_Retrieve_Body(&$response);
  1102. Wp_Http_Supports($capabilities = array(), $url = null);
  1103. Register_Widget($widget_class);
  1104. Unregister_Widget($widget_class);
  1105. Register_Sidebars($number = 1, $args = array());
  1106. Register_Sidebar($args = array());
  1107. Unregister_Sidebar($name);
  1108. Wp_Register_Sidebar_Widget($id, $name, $output_callback, $options = array());
  1109. Wp_Widget_Description($id);
  1110. Wp_Sidebar_Description($id);
  1111. Wp_Unregister_Sidebar_Widget($id);
  1112. Wp_Register_Widget_Control($id, $name, $control_callback, $options = array());
  1113. Wp_Unregister_Widget_Control($id);
  1114. Dynamic_Sidebar($index = 1);
  1115. Is_Active_Widget($callback = false, $widget_id = false, $id_base = false, $skip_inactive = true);
  1116. Is_Dynamic_Sidebar();
  1117. Is_Active_Sidebar($index);
  1118. Wp_Get_Sidebars_Widgets($deprecated = true);
  1119. Wp_Set_Sidebars_Widgets($sidebars_widgets);
  1120. Wp_Get_Widget_Defaults();
  1121. Wp_Convert_Widget_Settings($base_name, $option_name, $settings);
  1122. The_Widget($widget, $instance = array(), $args = array());
  1123. Wp_Get_Nav_Menu_Object($menu);
  1124. Is_Nav_Menu($menu);
  1125. Register_Nav_Menus($locations = array());
  1126. Unregister_Nav_Menu($location);
  1127. Register_Nav_Menu($location, $description);
  1128. Get_Registered_Nav_Menus();
  1129. Get_Nav_Menu_Locations();
  1130. Has_Nav_Menu($location);
  1131. Is_Nav_Menu_Item($menu_item_id = 0);
  1132. Wp_Create_Nav_Menu($menu_name);
  1133. Wp_Delete_Nav_Menu($menu);
  1134. Wp_Update_Nav_Menu_Object($menu_id = 0, $menu_data = array());
  1135. Wp_Update_Nav_Menu_Item($menu_id = 0, $menu_item_db_id = 0, $menu_item_data = array());
  1136. Wp_Get_Nav_Menus($args = array());
  1137. Wp_Get_Nav_Menu_Items($menu, $args = array());
  1138. Wp_Setup_Nav_Menu_Item($menu_item);
  1139. Wp_Get_Associated_Nav_Menu_Items($object_id = 0, $object_type = "post_type");
  1140. Wp_Nav_Menu($args = array());
  1141. Walk_Nav_Menu_Tree($items, $depth, $r);
  1142. Wp_Admin_Bar_Render();
  1143. Wp_Admin_Bar_My_Account_Menu($wp_admin_bar);
  1144. Wp_Admin_Bar_Dashboard_View_Site_Menu($wp_admin_bar);
  1145. Wp_Admin_Bar_My_Sites_Menu($wp_admin_bar);
  1146. Wp_Admin_Bar_Shortlink_Menu($wp_admin_bar);
  1147. Wp_Admin_Bar_Edit_Menu($wp_admin_bar);
  1148. Wp_Admin_Bar_New_Content_Menu($wp_admin_bar);
  1149. Wp_Admin_Bar_Comments_Menu($wp_admin_bar);
  1150. Wp_Admin_Bar_Appearance_Menu($wp_admin_bar);
  1151. Wp_Admin_Bar_Updates_Menu($wp_admin_bar);
  1152. Wp_Admin_Bar_Header();
  1153. Show_Admin_Bar($show);
  1154. Is_Admin_Bar_Showing();