Tag Archives: codex

add_user_to_blog

Add a user to a blog.Use the ‘add_user_to_blog’ action to fire an event when users are added to a blog.

383

Continue reading

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_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

add_submenu_page

Add a sub menu pageThis function takes a capability which will be used to determine whether or not a page is included in the menu.

369

Continue reading

add_shortcode

Add hook for shortcode tag.There can only be one hook for each shortcode. Which means that if another plugin has a similar shortcode, it will override yours or yours will override theirs depending on which order the plugins are included and/or ran.

365

Continue reading