You appear to be a bot. Output may be restricted
Description
Get posts for the NextGen galleryDeveloped using NextGEN version 1.9.2
Usage
$array = bw_get_spt_nggallery( $atts );
Parameters
- $atts
- ( array ) required – shortcode attributes
Returns
array images returned from NextGenSource
File name: oik-nivo-slider/nivo.phpLines:
1 to 13 of 13
function bw_get_spt_nggallery( $atts ) { $explode = explode( ':', $atts['post_type'] ); $type = bw_array_get( $explode, 0, "nggallery" ); $gallery = bw_array_get( $explode, 1, 1 ); if ( class_exists( "nggdb" ) ) { $images = nggdb::get_gallery( $gallery ); bw_trace2( $images ); } else { $images = null; e( __( "NextGEN does not appear to be activated", "oik-nivo-slider" ) ); } return( $images ); }View on GitHub View on Trac