Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm justing start developing this theme in WP and need a help to define atts to shortcod, directly in the functions.php. I aiming to give my client the less work possible, so he cant screw with any code, not even messy with the HTML editor every time he need to add a gallery to a post or a page.

I'm already find a way to use the LightBox Plus Color, to help me out with the lightbox, and already get read off the default styles. But now i need to fix the link="file" and add the size="gallery" (that is an add_image_size I'm already set in functions).

Any tip to help me?

EDIT:

I'm trying use this, but no effects taken:

//remove gallery default style
function remove_gallery_style() {
  return "<div class='gallery'>";
}
add_filter('gallery_style', 'remove_gallery_style');

//remove gallery and add custom settings
//deactivate WordPress function
remove_shortcode('gallery', 'gallery_shortcode');

//activate own function
add_shortcode('gallery', 'my_gallery_shortcode');

//the own renamed function
function my_gallery_shortcode($attr) {
    extract( shortcode_atts( array(
        'size' => 'galeria',
        'collums' => '5',
        'link' => 'file',
    ), $atts ) );
}

Except by the css style removed working fine.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.