bp_admin_enqueue_scripts( string $hook_suffix = '' )

Piggy back admin_enqueue_scripts action.


Description Description


Parameters Parameters

$hook_suffix

(Optional) The current admin page, passed to 'admin_enqueue_scripts'.

Default value: ''


Top ↑

Source Source

File: bp-core/admin/bp-core-admin-actions.php

function bp_admin_enqueue_scripts( $hook_suffix = '' ) {

	/**
	 * Fires inside the bp_admin_enqueue_scripts function.
	 *
	 * @since 1.7.0
	 *
	 * @param string $hook_suffix The current admin page, passed to admin_enqueue_scripts.
	 */
	do_action( 'bp_admin_enqueue_scripts', $hook_suffix );
}

Top ↑

Changelog Changelog

Changelog
Version Description
1.7.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.