Tag Archives: codex

add_custom_background

Add callbacks for background image display.The parameter $header_callback callback will be required to display the content for the ‘wp_head’ action. The parameter $admin_header_callback callback will be added to Custom_Background class and that will be added to the ‘admin_menu’ action.

223

Continue reading

add_action

Hooks a function on to a specific action.Actions are the hooks that the WordPress core launches at specific points during execution, or when specific events occur. Plugins can specify that one or more of its PHP functions are executed at these points, using the Action API.

209

Continue reading

addslashes_gpc

Adds slashes to escape strings.Slashes will first be removed if magic_quotes_gpc is set, see http://www.php.net/magic_quotes for more details.

207

Continue reading