Home CMS Tutorial DEDECMS How to call dede the first picture in the article

How to call dede the first picture in the article

Nov 18, 2019 am 11:05 AM
dede

How to call dede the first picture in the article

dedeHow to call the first picture in the article?

Two operations are required

The first step is to modify the include/extend.func.php file, insert the function at the bottom, and query the article append table, if you need to query a picture collection or something, just change the table name

Recommended: "dedecms usage tutorial"

The code is as follows:

function GetFirstImg($arcid){
global $dsql;
$query= "SELECT body FROM `dede_addonarticle` where aid='$arcid'";
$row = $dsql->GetOne($query);
$preg = "/<img.*?src=[\&#39;\"](.+?)[\&#39;\"].*?>/i";
preg_match_all($preg, $row[&#39;body&#39;], $match);
//print_r($match);
return $match[1][0];
}
Copy after login

The second part modifies the call tag include/taglib/arclist.lib.php

The litpic field needs to be used when DreamWeaver calls the article content. This field needs to be reconstructed and find the function lib_arclistDone() function. Inside $row[litpic], add //Call the first picture of the article, non-thumbnail, if it is empty, call the thumbnail.

The code is as follows:

if(GetFirstImg($row[&#39;id&#39;])!="")
{
$row[&#39;litpic&#39;]=GetFirstImg($row[&#39;id&#39;]);
}
Copy after login

The judgment is written so that when the article is called without a picture, the thumbnail display can still be selected. Dreamweaver v57 sp1 is about line 475, just add it below the $row[] array.

In this way, the original label field can also be used to call the image. If the article has the first picture, the first picture will be displayed. If not, the article thumbnail

will be called.

The above is the detailed content of How to call dede the first picture in the article. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)