| 1 |
<?php |
| 2 |
|
| 3 |
add_shortcode( 'bogo', 'bogo_shortcode_callback' ); |
| 4 |
|
| 5 |
function bogo_shortcode_callback( $atts, $content, $shortcode_tag ) { |
| 6 |
$atts = shortcode_atts( array( |
| 7 |
'view' => 'list', |
| 8 |
), $atts ); |
| 9 |
|
| 10 |
switch ( $atts['view'] ) { |
| 11 |
case 'suggestion': |
| 12 |
return bogo_language_suggestion( 'echo=0' ); |
| 13 |
case 'list': |
| 14 |
default: |
| 15 |
return bogo_language_switcher( 'echo=0' ); |
| 16 |
} |
| 17 |
} |
| 18 |
|