Skip to content

Instantly share code, notes, and snippets.

@dotherightthing
Created May 2, 2020 13:57
Show Gist options
  • Save dotherightthing/2a46d277b713f2bd24c22da02b68bfd2 to your computer and use it in GitHub Desktop.
Save dotherightthing/2a46d277b713f2bd24c22da02b68bfd2 to your computer and use it in GitHub Desktop.
Filter content #wordpress #cheatsheet
/**
* Filter content
*
* @param string $content Content.
* @return string Content
* @example
* add_filter( 'the_content', 'wpdtrt_content_filter' );
*/
function wpdtrt_content_filter( $content ) {
$content = str_replace( '<h2>', '<div><h2>', $content );
$content = str_replace( '</h2>', '</h2></div>', $content );
return $content;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment