2 回答
TA贡献1824条经验 获得超5个赞
您可以通过对不同角色使用额外爆炸来传递多个链接
[slide ... links="Test1|https://www.test1.com,Test2|https://www.test2.com"]
function slide_item_shortcode($atts, $content = null)
{
shortcode_atts([
"image" => '',
"headline" => '',
"body" => '',
"links" => '',
], $atts);
$linkPairs = explode(',', $atts['links']); // separate the pairs
$output = '<li class="slide">';
foreach($linkPairs as $linkPair) {
$pair = explode('|', $linkPair); // separate the title and url
$output .=
'<p><img src="' . esc_url($atts['image']) . '" alt="' . $pair[0] .'" /></p>
<p>'. $atts['headline'] .'</p>
<p>'. $atts['body'] .'</p>
<p>'. '<a href="' . $pair[1] . '" target="_blank">' . $pair[0] . '</a>' .'</p>';
}
$output .= '</li>';
return $output;
}
TA贡献1884条经验 获得超4个赞
我建议您不要在属性内使用 html,为此再创建一个属性来覆盖默认值,我还为示例的链接添加了另一个参数:
短代码:
[myshortcode heading="Text of heading" heading_tag="h3" links="Name of link 1|#url1|blank, Name of Link2|#url2"]
和处理程序本身
function linkParser($source) {
$args = array_map('trim', explode('|', trim($source)));
$keys = ['url_name', 'url', 'target'];
$results = [];
foreach($args as $key => $value) {
$results[(isset($keys[$key]) ? $keys[$key] : $key)] = $value;
}
return $results;
}
function myShortCode($attrs, $content = null) {
$attrs = shortcode_atts([
'heading_tag' => 'h2',
"heading" => "",
"links" => ""
], $attrs);
$heading = sprintf('<%1$s>%2$s</%1$s>', (!empty($attrs['heading_tag']) ? $attrs['heading_tag'] : 'h2'), $attrs['heading']);
$links = [];
if(!empty($attrs['links'])) {
$links = array_map('linkParser', explode(',', $attrs['links']));
}
// Tests with kint debug
d($heading);
d($links);
}
add_shortcode('myshortcode', 'myShortCode');
- 2 回答
- 0 关注
- 100 浏览
添加回答
举报