Wordpress calls all images of the article

Source: Internet
Author: User
The company uses wordpress to create a very simple article website. on the left side of the article list page, all the pictures in the article, and on the right side is the text description of the article.

The company uses wordpress to create a very simple article website. on the left side of the article list page, all the images in the article are displayed, and on the right side is the text description of the article. So how can we list all the images in the article?

First, write a function in function. php (create a function without function. php). The code is as follows:


Function all_img ($ soContent ){
$ SoImages = '~] * \/> ~ ';
Preg_match_all ($ soImages, $ soContent, $ thePics );
$ AllPics = count ($ thePics );
If ($ allPics> 0 ){
Foreach ($ thePics [0] as $ v ){
Echo $ v;
}
}
Else {
Echo "echo bloginfo ('Template _ url ');
Echo "/images/thumb.gif '> ";
}
}
Register_nav_menus (array (
'Primary '=> _ ('primary navigation '),
));


And then write the data where the call is required.


Post_content);?>


You can call

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.