Skip to content

Instantly share code, notes, and snippets.

@KaineLabs
Last active September 16, 2022 03:59
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KaineLabs/1a8f39f01e95bbe3af2c8e9c1961c96b to your computer and use it in GitHub Desktop.
Save KaineLabs/1a8f39f01e95bbe3af2c8e9c1961c96b to your computer and use it in GitHub Desktop.
Youzify - BuddyPress Add Activity Reactions to Home Page.
<?php
/**
* Youzify - BuddyPress Add Activity Reactions to Home Page.
*/
function yzc_activity_scripts( ) {
if ( is_home() || is_front_page() ) {
if ( function_exists( 'yzpr_scripts' ) ) {
yzpr_scripts();
yzpr_form();
}
}
}
add_action( 'wp_footer', 'yzc_activity_scripts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment