Created
April 18, 2020 11:25
-
-
Save techpulsetoday/fcb1e32e05f4ff1d6631e28bfb06c2c8 to your computer and use it in GitHub Desktop.
Add Class to first Paragraph in WordPress the_content();
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Add Class to first Paragraph in WordPress the_content(); | |
* | |
* @param [type] $content | |
* @return void | |
*/ | |
function first_paragraph($content) | |
{ | |
if (is_page('careers')) { | |
return preg_replace('/<p([^>]+)?>/', '<p$1 class="text-center">', $content, 1); | |
} else { | |
return preg_replace('/<p([^>]+)?>/', '<p$1>', $content, 1); | |
} | |
} | |
add_filter('the_content', 'first_paragraph'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment