SoFunction
Updated on 2025-03-10

Solutions to display the full title of the article in the dedecms list

Solution:

Modify the include\inc\inc_fun_SpGetArcList.php file, modify the function SpGetArcList, and find the following code:

Copy the codeThe code is as follows:

$row['typelink'] = "<a href='".$row['typeurl']."'>".$row['typename']."</a>"; 
           $row['image'] = "<img src='".$row['picname']."' border='0' width='$imgwidth' height='$imgheight' alt='".ereg_replace("['><]","",$row['title'])."'>"; 
           $row['imglink'] = "<a href='".$row['filename']."'>".$row['image']."</a>"; 
           $row['title'] = cn_substr($row['title'],$titlelen); 
           $row['textlink'] = "<a href='".$row['filename']."'>".$row['title']."</a>"; 

           if($row['color']!="") $row['title'] = "<font color='".$row['color']."'>".$row['title']."</font>"; 
           if($row['iscommend']==5||$row['iscommend']==16) $row['title'] = "<b>".$row['title']."</b>"; 

Modified to:

Copy the codeThe code is as follows:

$row['typelink'] = "<a href='".$row['typeurl']."'>".$row['typename']."</a>"; 
           $row['image'] = "<img src='".$row['picname']."' border='0' width='$imgwidth' height='$imgheight' alt='".ereg_replace("['><]","",$row['title'])."'>"; 
           $row['imglink'] = "<a href='".$row['filename']."'>".$row['image']."</a>"; 
$row['alltitle'] = $row['title'];  //Add article title attribute support
           $row['title'] = cn_substr($row['title'],$titlelen); 
           $row['textlink'] = "<a href='".$row['filename']."'>".$row['title']."</a>"; 

           if($row['color']!="") $row['title'] = "<font color='".$row['color']."'>".$row['title']."</font>"; 
           if($row['iscommend']==5||$row['iscommend']==16) $row['title'] = "<b>".$row['title']."</b>"; 
Added to the code

$row['alltitle'] = $row['title'];
Redefine the content of an array variable that stores the title.

Then you can use tags like [field:alltitle/] in the template to call the full title of the article.
For example:

Copy the codeThe code is as follows:

{dede:arclist typeid='0' row='6' titlelen=32 orderby='pubdate'} 
 <li><a href="[field:filename /]" title="[field:alltitle/]">[field:title/]</a></li> 
 {/dede:arclist} 

That about does it - enjoy!