Advertisement
sayful

WP Shortcode

Jan 17th, 2014
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.04 KB | None | 0 0
  1. <?php
  2.  
  3. /*--To use wordpress shortcode, you have to use the following code in function.php--*/
  4.  
  5.  
  6. /*=========================================================================
  7. add this line for instance into functions.php of your theme to add shortcode in text widgets
  8. ==========================================================================*/
  9. add_filter('widget_text', 'do_shortcode');
  10.  
  11.  
  12.  
  13.  
  14.  
  15. /*=========================================================================
  16. simple shortcode for youtube video
  17. ==========================================================================*/
  18.  
  19. function youtube_video_shortcode( $atts, $content = null ) {
  20.     return '<iframe width="640" height="360" src="//www.youtube.com/embed/'.$content.'" frameborder="0" allowfullscreen></iframe>';
  21. }
  22. add_shortcode( 'youtube', 'youtube_video_shortcode' );
  23.  
  24. //Usage of the shortcode
  25. [youtube]c8Lq6wHSEA8[youtube]
  26.  
  27.  
  28. /*=========================================================================
  29. simple shortcode with attribute for vimeo video
  30. ==========================================================================*/
  31.  
  32. function vimeo_video_shortcode( $atts, $content = null ) {
  33.     extract(shortcode_atts(array(
  34.             'width' =>'500',
  35.             'height' => '281',
  36.             'userid' => 'sayfulislam',
  37.             'username' => 'sayful islam',
  38.             'videoid' => '82750579'
  39.         ), $atts));
  40.     return '<iframe src="//player.vimeo.com/video/'.$videoid.'" width="'.$width.'" height="'.$height.'" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> <p><a href="http://vimeo.com/'.$videoid.'">Roka Puta 60 Seconds</a> from <a href="http://vimeo.com/'.$userid.'">'.$username.'</a> on <a href="https://vimeo.com">Vimeo</a>.</p>';
  41. }
  42. add_shortcode( 'vimeo', 'vimeo_video_shortcode' );
  43.  
  44. //Usage of the shortcode
  45. [vimeo width='640' height='360' userid='sayfulislam' username='sayful islam' videoid='82750579']
  46.  
  47. /*=========================================================================
  48. simple shortcode in shortcode with attribute for slider images
  49. ==========================================================================*/
  50.  
  51. function slider_wrapper_shortcode( $atts, $content = null ) {
  52.     extract(shortcode_atts(array(
  53.             'type' =>'',
  54.         ), $atts));
  55.     return '<div id="slides">'.do_shortcode($content).'</div>';
  56. }
  57. add_shortcode( 'slider', 'slider_wrapper_shortcode' );
  58.  
  59. function slide_shortcode( $atts, $content = null ) {
  60.     extract(shortcode_atts(array(
  61.             'src' =>'',
  62.             'alt' =>'',
  63.         ), $atts));
  64.     return '<img src="'.$src.'" alt="'.$alt.'" />';
  65. }
  66. add_shortcode( 'slides', 'slide_shortcode' );
  67. //Usage of shortcode
  68. [slider][slides src="http://localhost/andia/wp-content/themes/andia-agency/assets/img/slider/1.jpg"][slides src="http://localhost/andia/wp-content/themes/andia-agency/assets/img/slider/2.jpg"][slides src="http://localhost/andia/wp-content/themes/andia-agency/assets/img/slider/3.jpg"][slides src="http://localhost/andia/wp-content/themes/andia-agency/assets/img/slider/4.jpg"][/slider]
  69.  
  70. //using shortcode directly to your theme
  71. <?php echo do_shortcode('[slider]'); ?>
  72.  
  73. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement