Archive | Functions by letter a RSS feed for this section

add_user_meta

Add meta data field to a user.Post meta data is called “Custom Fields” on the Administration Screens.

381

Continue reading

add_users_page

Add sub menu page to the Users/Profile main menu.This function takes a capability which will be used to determine whether or not a page is included in the menu.

379

Continue reading

add_user

Creates a new user from the “Users” form using $_POST information.It seems that the first half is for backwards compatibility, but only has the ability to alter the user’s role. WordPress core seems to use this function only in the second way, running edit_user() with no id so as to create a new user.

377

Continue reading

add_thickbox

Enqueues the default ThickBox js and css.If any of the settings need to be changed, this can be done with another js file similar to media-upload.js and theme-preview.js. That file should require array(‘thickbox’) to ensure it is loaded after.

375

Continue reading

add_theme_support

Allows a theme to register its support of a certain featureMust be called in the theme’s functions.php file to work. If attached to a hook, it must be after_setup_theme. The init hook may be too late for some features.

373

Continue reading