PluginProbe
Bogo / 3.9
Bogo v3.9
3.9.3 trunk 1.0 1.1 2.0 2.0.1 2.1 2.1.1 2.1.2 2.1.3 2.2 2.3 2.4 2.4.1 2.4.2 2.4.3 2.5 2.6 2.6.1 2.7 2.8 2.8.1 2.9 3.0 3.0.1 All 52 releases
bogo / includes / shortcodes.php

shortcodes.php in Bogo 3.9, at includes/shortcodes.php

18 lines 370 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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