22 lines
594 B
PHP
22 lines
594 B
PHP
<?php
|
|
|
|
/**
|
|
* NOTE: You should always use the wp_enqueue_script() and wp_enqueue_style() functions to include
|
|
* javascript and css files.
|
|
*/
|
|
|
|
/**
|
|
* bp_example_add_js()
|
|
*
|
|
* This function will enqueue the components javascript file, so that you can make
|
|
* use of any javascript you bundle with your component within your interface screens.
|
|
*/
|
|
function bp_example_add_js() {
|
|
global $bp;
|
|
|
|
if ( $bp->current_component == $bp->example->slug )
|
|
wp_enqueue_script( 'bp-example-js', plugins_url( '/bp-example/js/general.js' ) );
|
|
}
|
|
add_action( 'template_redirect', 'bp_example_add_js', 1 );
|
|
|
|
?>
|