我想在标题旁边添加一个视频图标/图库图标,该帖子包含视频/照片库。我在最新的 wordpress 上并制作自己的自定义主题。目前我正在使用
<h3><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
为标题。我正在研究另一个主题(不是我的),之前的标题上有视频图标。我在functions.php中找到的代码
<?php
function title_embed($title,$conts)
{
$pattern ="/<object> ?.* <\/object>/isx";
$return =preg_match($pattern, $conts,$result);
if($result)
{
$return = $title.'<span class="video-icon"></span>';
return $return;
}
else{return $title;}
}
这使得帖子标题的跨度类包含<object>
和</object>
。标题代码是
<a href="<?php echo $arraybox['link'][0];?>" title="<?php echo $arraybox['alt'][0];?>"><h2><?php echo $arraybox['title'][0];?></h2></a>
我尝试将上面的代码粘贴到我当前主题的 functions.php 中,但什么也没发生。我认为问题可能出在我称呼标题的方式上。我用谷歌搜索了一个资源,浪费了我 6-7 个小时。