Por supuesto, aquí esta:
Código PHP:
add_shortcode( 'nivo_slider', 'nivo_slider_func' );
function nivo_slider_func( $atts, $content = null ) {
$output = '<div class="slider-wrapper theme-default">';
$output .= '<div id="slider" class="nivoSlider">';
$output .= do_shortcode($content);
$output .= '</div></div>';
return $output;
}
add_shortcode( 'image', 'nivo_image_shortcode' );
function nivo_image_shortcode( $atts, $content = null ) {
extract( shortcode_atts( array(
'title' => ''
), $atts )
);
return '<img src="'.$content.'" data-thumb="'.$content.'" title="'.$atts['title'].'" alt="'.$atts['title'].'" />';
}
Espero que me podáis ayudar con esto, no encuentro la forma de corregirlo.
Muchas gracias!