Advertisement
mikelittle

Tweak Jetpack Carousel

Jan 17th, 2013
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.62 KB | None | 0 0
  1. <?php
  2. /*
  3. Plugin Name: Tweak Jetpack Carousel  
  4. Plugin URI: http://mikelittle.org/
  5. Description: Remove the title and description from the JetPack Carousel overlay
  6. Author: Mike Little
  7. Version: 0.1
  8. Author URI: http://mikelittle.org/
  9. License: GPL V2+
  10. */
  11.  
  12. add_filter( 'jp_carousel_add_data_to_images', 'z1_no_carousel_data', 10, 2 );
  13. function z1_no_carousel_data( $html, $attachment_id ) {
  14.     $html = preg_replace( '/data-image-title="[^"]*"/', '', $html);
  15.     $html = preg_replace( '/data-image-description="[^"]*"/', '', $html);
  16.     $html = preg_replace( '/data-comments-opened="[^"]*"/', '', $html);
  17.     return $html;
  18. }
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement