Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 606531
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T17:15:51+00:00 2026-05-13T17:15:51+00:00

WordPress spits posts in this format: <h2>Some header</h> <p>First paragraph of the post</p> <p>Second

  • 0

WordPress spits posts in this format:

<h2>Some header</h>
<p>First paragraph of the post</p>
<p>Second paragraph of the post</p>
etc.

To get my cool styling on the first paragraph (it’s one of those things that looks good only sparingly) I need to hook into the get_posts function to filter its output with a preg_replace.

The goal is to get the above code to look like:

<h2>Some header</h>
<p class="first">First paragraph of the post</p>
<p>Second paragraph of the post</p>

I have this so far but it’s not even working (the error is: “preg_replace() [function.preg-replace]: Unknown modifier ‘]'”)

$output=preg_replace('<p[^>]*>', '<p class="first">', $content);

I can’t use CSS3 meta-selectors because I need to support IE6, and I can’t apply the :first-line meta-selector (this is one that IE6 supports) on the parent container because it would hit the H2 instead of the first P.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T17:15:52+00:00Added an answer on May 13, 2026 at 5:15 pm

    Reading through the answers there are some that will work but all have drawbacks of either using an external parsing library or possibly matching tags other than the P tag or also matching its attributes.

    I ended up using this solution with the str_replace_once function from here:

    str_replace_once('<p>', '<p class="first">', $content);
    

    Simple enough and it works just as intended. Here’s full WordPress code snippet to filter the first paragraph any time the_content() is called:

    add_filter('the_content', 'first_p_style');
    function first_p_style($content) {
     $output=str_replace_once('<p>', '<p class="first">', $content);
     return ($output);
    }
    

    Thanks for all the answers!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got a WordPress powered blog that I'm trying to get setup on our
I have a (Wordpress powered) website, and Google is indexing some of the sub-directories.
I've used a WordPress blog and a Screwturn Wiki (at two separate jobs) to
I moved a WordPress installation to a new folder on a Windows/ IIS server.
I am using wordpress and use custom permalink structure: /%category%/%postname%/ My problem is that
I'm starting a Wordpress Blog that will have adult content on it, so I'll
i have a wordpress blog and want to give people the same user experience
I have a WordPress site (2.6.2) in which I have set the Home page
I'm migrating my WordPress blog and phpBB Forum into a new hosting server. I
I'm running a wordpress blog and would like to access the actual file that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.