Changeset 989595
- Timestamp:
- 09/14/2014 06:16:31 PM (12 years ago)
- File:
-
- 1 edited
-
wp-couch-mode/tags/1.2/wp-couch-mode.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-couch-mode/tags/1.2/wp-couch-mode.php
r989416 r989595 3 3 Plugin Name: WP Couch Mode 4 4 Plugin URI: http://wordpress.org/plugins/wp-couch-mode/ 5 Description: WP Couch Mode lets you get a Clean or Simple Reading mode for post in your Word press website.6 Version: 1. 15 Description: WP Couch Mode lets you get a Clean or Simple Reading mode for post in your WordPress website. 6 Version: 1.2 7 7 Author: Ritesh Vatwani 8 8 Author URI: http://riteshvatwani.com/ … … 197 197 $html .= '</div>'; 198 198 } 199 $html .= wpautop($page_data->post_content); 199 200 // filter out iframe here 201 $post_content = preg_replace( '@<iframe[^>]*?>.*?</iframe>@siu', '', $page_data->post_content ); 202 203 $html .= wpautop($post_content); 200 204 201 205 $html .= "</div></div>"; 202 206 203 echo $html;207 echo do_shortcode($html); 204 208 die(); 205 209 }
Note: See TracChangeset
for help on using the changeset viewer.