Created
October 3, 2011 19:50
-
-
Save mojowill/1260045 to your computer and use it in GitHub Desktop.
Get Rid of stupid extra 10px on Wordpress Image captions!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Remove Stupid 10xp from around the Caption Images | |
class fixImageMargins{ | |
public $xs = 0; //change this to change the amount of extra spacing | |
public function __construct(){ | |
add_filter('img_caption_shortcode', array(&$this, 'fixme'), 10, 3); | |
} | |
public function fixme($x=null, $attr, $content){ | |
extract(shortcode_atts(array( | |
'id' => '', | |
'align' => 'alignnone', | |
'width' => '', | |
'caption' => '' | |
), $attr)); | |
if ( 1 > (int) $width || empty($caption) ) { | |
return $content; | |
} | |
if ( $id ) $id = 'id="' . $id . '" '; | |
return '<div ' . $id . 'class="wp-caption ' . $align . '" style="width: ' . ((int) $width + $this->xs) . 'px">' | |
. $content . '<p class="wp-caption-text">' . $caption . '</p></div>'; | |
} | |
} | |
$fixImageMargins = new fixImageMargins(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment