我正在尝试在我的摘录“阅读更多”链接中输出自定义图像。
像这样...
我正在使用高级 exceprt 插件,因为它可以根据我的需要进行定制。
这就是我尝试在阅读更多链接中输出带有图像的摘录的方式...
<?php the_advanced_excerpt('length=120&use_words=0&no_custom=0&ellipsis=%26hellip;&read_more=read more <img src"' . get_bloginfo('template_url') . '"/images/readmore-arrow.png" alt="" />&add_link=1'); ?>
但奇怪的是它输出了这个阅读更多链接......
我似乎分解了图像位置的 URL 并像这样输出它......
<img alt="" readmore-arrow.png"="" images="" my-theme-name"="" themes="" wp-content="" wp="" mywebsitename.co.uk="" src"http:="">
谁能帮我解决这个问题?
谢谢
工作代码...
<?php the_advanced_excerpt('length=120&use_words=0&no_custom=0&ellipsis=%26hellip;&read_more=read more <img src="' . get_bloginfo('template_url') . '/images/readmore-arrow.png" alt="" />&add_link=1'); ?>