Hopeless with php, so any help would be appreciated.
This shortcode example does not work, it only displays the shortcode:
// add slider in the header
function show_slider() {
return "[smoothslider id=1]";
}
add_action('thematic_header','show_slider');
Nor does this work:
// add slider in the header
function show_slider() {
if ( function_exists( 'get_smooth_slider' ) ) {
get_smooth_slider(); }
}
add_action('thematic_header','show_slider');
Plugin usage details http://www.clickonf5.org/smooth-slider
Thanks!