if ( ! function_exists( 'wpsf_add_custom_css' ) ){
function wpsf_add_custom_css() {
//style
wp_enqueue_style( ... $arguments );
//script
wp_enqueue_script( ... $arguments );
}
add_action('wpsf/enqueue', 'wpsf_add_custom_css' );
}
Note: you will still enqueue the style or script the normal way WordPress does it. (Don’t just leave the … in the code… you need to fill out the rest of the information). The big difference is that you can hook it into the wpsf/enqueue hook to include your custom CSS/JS in the framework.