Archive | Functions RSS feed for this section

require_wp_db

Load the correct database class file.This function is used to load the database class file either at runtime or by wp-admin/setup-config.php We must globalise $wpdb to ensure that it is defined globally by the inline code in wp-db.php.

2737

Continue reading

require_if_theme_supports

Checks a theme’s support for a given feature before loading the functions which implement it.

2735

Continue reading

request_filesystem_credentials

Displays a form to the user to request for their FTP/SSH details in order to connect to the filesystem.All chosen/entered details are saved, Excluding the Password.

2733

Continue reading

remove_user_from_blog

Remove a user from a blog.Use the ‘remove_user_from_blog’ action to fire an event when users are removed from a blog.

2731

Continue reading

remove_theme_support

Allows a theme to de-register its support of a certain featureShould be called in the theme’s functions.php file. Generally would be used for child themes to override support from the parent theme.

2729

Continue reading