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

  • Home
  • SEARCH
  • 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 9149667
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T11:30:30+00:00 2026-06-17T11:30:30+00:00

I have a site that needs to display the first image from any given

  • 0

I have a site that needs to display the first image from any given post in a specific category. I have it working, and have added code below. My question is, is there a better way? This seems awfully kludgy.

I’m parsing the post data for whatever first appears between src=" and ". Any gotcha’s that i’m missing? Does WordPress have a better way to do this built in?

function extractStringFromString($string, $start, $end) {
//Finds the first string between $start and $end. 

    $startPos = strpos($string,$start);

    $stringEndTagPos = strpos($string,$end,$startPos);

    $stringBetween = substr($string,$startPos+strlen($start),$stringEndTagPos-$startPos-strlen($start));

    if (strlen($stringBetween) != 0 && $startPos!= '') {
        return $stringBetween;
    }
    else {
        return false;
    }



}
function getfirstimage($post){
//Returns url of first image located in post data
global $wpdb;

$sqlquery = "SELECT post_content FROM  `wp_posts` WHERE  `ID` = $post LIMIT 0 , 1";
$result = $wpdb->get_results( $sqlquery );
$result = $result[0];
$postcontent = $result->post_content;

if ($result){
    return extractStringFromString($postcontent, 'src="', '" ');
}

else return 0;

}

  • 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-06-17T11:30:31+00:00Added an answer on June 17, 2026 at 11:30 am

    3rd Option: Use a Dom Parser

    <?php
    while(have_posts()) : the_post();
        $dom = new DOMDocument();
        $dom->loadHTML(get_the_content());
        $images = $dom->getElementsByTagName('img');
        $src = $images->item(0)->getAttribute('src');
        echo 'Src: '.$src.'<br/>';
        echo 'First Image: '.$images->item(0)->saveHTML();
        echo 'Image HTML: '.htmlentities($images->item(0)->saveHTML());
    endwhile;
    ?>
    

    This should get you started in the right direction. Regular Expressions won’t account for malformed HTML, and not all Images in your Post HTML are necessarily attachments.

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

Sidebar

Related Questions

I have a Drupal site that needs to display a unique header image based
I have a site written in Delphi that needs to get data from a
I am working on a site that needs to display inventory data. I am
Ok so I have a site that needs to have 2 RewriteRules on it.
I'm going to have a single site that needs to be themed a number
I have a web site to do with alcohol that needs to verify the
I've have a web site I'm building using NodeJS, that needs to serve up
I have a win form that creates a site in IIS7. One function needs
I have one site that is displaying html content that needs to be displayed
I have a site that I am currently working on in ASP.NET 2.0 using

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.