Dear how can help,
I am trying to modify the shortcode for showing recent picture from gallery so that i can designate the width and height of the picture also, so i went into the shortcodes.php file and altered the part about RECENT shortcode into:
function show_recent( $atts ) {
extract(shortcode_atts(array(
'max' => '',
'template' => '',
'id' => 0,
'w' => '',
'h' => '',
'mode' => 'id'
), $atts));
$out = nggShowRandomRecent($mode, $max, $template, $id, $w, $h);
return $out;
}
And nothing happened, can anyone help, what should I do, so that I can use the shortcode with w and h marks??
Thanks