You appear to be a bot. Output may be restricted
Description
Example hook for [bw_pages] shortcode
Usage
bw_pages__example( $shortcode );
Parameters
- $shortcode
- ( mixed ) optional default: bw_pages –
Returns
voidSource
File name: oik/shortcodes/oik-pages.phpLines:
1 to 12 of 12
function bw_pages__example( $shortcode="bw_pages" ) { e( __( "Display sub-pages of the current or selected item.", "oik" ) ); e( ' ' ); e( __( "The item may be a page, post or custom post type.", "oik" ) ); e( ' ' ); e( __( "The default display is formatted with a featured image, excerpt and a read more link.", "oik" ) ); e( ' ' ); $link = "https://www.oik-plugins.com/oik-shortcodes/$shortcode/$shortcode"; $link = retlink( NULL, $link, sprintf( __( '%1$s help', "oik" ), $shortcode ) ); /* translators: %s link to shortcode examples on oik-plugins.com */ e( sprintf( __( 'For examples visit %1$s', "oik" ), $link ) ); }View on GitHub View on Trac