bp_after_setup_theme()
Fire the ‘bp_after_setup_theme’ action.
Description Description
Piggy-back action for BuddyPress-specific theme actions once the theme has been set up and the theme’s functions.php has loaded.
Hooked to ‘after_setup_theme’ with a priority of 100. This allows plenty of time for other themes to load their features, such as BuddyPress support, before our theme compatibility layer kicks in.
Source Source
File: bp-core/bp-core-dependency.php
function bp_after_setup_theme() { /** * Fires inside the 'bp_after_setup_theme' function. * * @since 1.7.0 */ do_action( 'bp_after_setup_theme' ); }
Changelog Changelog
Version | Description |
---|---|
1.6.0 | Introduced. |