• I am using the Gallery shortcode in my posts but would like to insert google adsense after a specified number of images within the gallery.

    Could someone tell me where the actual code is for the Gallery so I can modify it accordingly?

Viewing 1 replies (of 1 total)
  • in /wp-includes/media.php from line 745

    to do it without hacking core files:

    add this to functions.php of your theme:

    remove_shortcode('gallery', 'gallery_shortcode');
    add_shortcode('gallery', 'ad_gallery_shortcode');
    function ad_gallery_shortcode($attr) {
    /*...
    the full code from media.php -
    until line 876, last few lines see below;
    ...*/
    $output .= "
    			<br style='clear: both;' />
    		</div>\n";
    
    	return $output;
    }

    then edit it there to include your ads.

Viewing 1 replies (of 1 total)

The topic ‘Gallery Functions’ is closed to new replies.