我有一个创建“意见箱”的短代码。
用户应插入4个零件
标题图像与文本相关的观点我想检查是否没有输入图像,在这种情况下,从/图像/文件夹中获取默认图像
但在不更改“粘贴Img Url”语句的情况下执行此操作,我需要此语句向用户解释图像(如果存在)的放置位置。
This is the shortcode:
function opinionBox( $atts, $content = null ) {
extract( shortcode_atts( array(
\'title\' => \'yourtitle\',
\'imgURL\' => \'paste Img Url\',
\'side\' => \'left\'
), $atts ) );
return \'
<div class="opinionBOX">
<div style="float: \'. $side .\';" class="myimg">
<img alt="\'. $title .\'" src="\'. $imgURL .\'">
</div>
<div class="speakerBOX">
<span class="highlight_black">\'. $title .\'</span><p></p>
\'. $content .\'
</div>
<br style="clear: right;">
</div>
\';
}
add_shortcode( \'opinionbox\', \'opinionBox\' );