How to Remove HTML Elements from Post Excerpt?

At first glance, this appears to be an XY Problem. If you simply want to increase the length of the excerpt auto-generated from the post content, you can use the excerpt_length hook in functions.php. function modify_excerpt_length( $length ) { return 300; } add_filter( ‘excerpt_length’, ‘modify_excerpt_length’, 99 ); Then simply call the excerpt in your template: … Read more

Duplicate content with incremental titles. How is this happening?

These are attachment URLs. They are created for all images in your post. You have a gallery with 17 images, so for each image an URL with the structure [post_url]/[attachment_name] is created. /2010/07/2011-honda-odyssey-official-details-photos-and-specs/ is the post URL, 2011_hondy_odyssey-2 is the name of one of the images in it (created based on the file name when … Read more