Quote:
Originally Posted by druid66
fuck me Fris you're WP God 
thank you very much, WORKS!
now tell me how to add this line to all posts (if you know).
|
yes add this to your themes functions file
Code:
add_filter( 'shortcode_atts_gallery', 'gallery_sort_title');
function gallery_sort_title($atts) {
$atts['orderby'] = 'title';
return $atts;
}