我试图在我的摘录中输出自定义图像'阅读更多'链接。
像这样...
我正在使用高级的exceprt插件,因为它可以根据我的需求进行定制。
这就是我尝试在readmore链接中输出带有图片的摘录...
<?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'); ?>
但奇怪的是它输出了这个readmore链接......
我似乎打破了图像位置的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'); ?>
答案 0 :(得分:0)
我不确定这是否会为您解决,因为我没有使用该插件,但您错过了=
属性的src
。我在这里添加了它:
<?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'); ?>