Create a shortcode
-
Hello,
I was using other slider plugin and set a shortcode like this.add_shortcode( 'sliderbydevice', function() { if ( wp_is_mobile() ) { if ( function_exists( 'soliloquy' ) ) { soliloquy( '390653' ); } } else { if ( function_exists( 'soliloquy' ) ) { soliloquy( '390651' ); } }});
I tried same for metaslider but it doesn’t work.
add_shortcode( 'sliderbydevice', function() { if ( wp_is_mobile() ) { echo do_shortcode('[metaslider id="46112"]'); } else { echo do_shortcode('[metaslider id="2703"]'); }});
Do you have a php code instead of shortcode?
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Create a shortcode’ is closed to new replies.