Browse Source

removing p from around imgs

http://css-tricks.com/snippets/wordpress/remove-paragraph-tags-from-arou
nd-images/
eddiemachado 14 năm trước cách đây
mục cha
commit
739bcdeb71
1 tập tin đã thay đổi với 9 bổ sung0 xóa
  1. 9 0
      library/bones.php

+ 9 - 0
library/bones.php

@@ -209,6 +209,15 @@ function page_navi($before = '', $after = '') {
 	}
 	echo '</ol></nav>'.$after."";
 }
+
+// remove the p from around imgs (http://css-tricks.com/snippets/wordpress/remove-paragraph-tags-from-around-images/)
+function filter_ptags_on_images($content){
+   return preg_replace('/<p>\s*(<a .*>)?\s*(<img .* \/>)\s*(<\/a>)?\s*<\/p>/iU', '\1\2\3', $content);
+}
+
+add_filter('the_content', 'filter_ptags_on_images');
+
+
 	
 
 ?>