' . esc_attr( $bloghub_css_code ) . '';
}
add_action( 'wp_head', 'bloghub_custom_css' );
/**
* Custom JS Fucntion
*/
if ( function_exists( 'bloghub_fs' ) ) {
if ( $bloghub_fs->is_paying() ) {
function bloghub_custom_js() {
$enable_js = get_theme_mod( 'enable_js_code', false );
if ( true === $enable_js ) {
$bloghub_js_code = get_theme_mod( 'js_code_settings' );
echo '
';
}
}
add_action( get_theme_mod( 'js_code_position', 'wp_footer' ), 'bloghub_custom_js' );
}
}