gpt4 book ai didi

wordpress - Wordpress Shortcode语法错误,意外 '}'

转载 作者:行者123 更新时间:2023-12-03 08:22:10 25 4
gpt4 key购买 nike

我正在学习如何制作WordPress主题。我过得很好现在,我想输入简码。但是在第17行的E:\ xampp \ htdocs \ wordpress \ wp-content \ themes \ freedom \ shortcodes.php中显示了Parse错误:语法错误,意外的'}'。我仍然不知道是什么问题。这是代码。

<?php

function slider_function( $atts ) {
$atts = extract( shortcode_atts(
array(
'tittle'=>'',
'description'=>'',
'button'=>'',
'button_url'=>''
),$atts ) );
return '
<div class="slider">
<h1>"' . $atts['tittle'] . '"</h1>
<h2>"' . $atts['tittle'] . '"</h2>
<a href="' . $atts['tittle'] . '" class="btn-modern text-center"></a>
</div>'
}

add_shortcode( 'slider','slider_function' );

?>

最佳答案

看一下这段代码,简码是如何工作的,看看代码返回什么。

function bartag_func( $atts ) {
$a = shortcode_atts( array(
'foo' => 'something',
'bar' => 'something else',
), $atts );

return "foo = {$a['foo']}";
}
add_shortcode( 'bartag', 'bartag_func' );

关于wordpress - Wordpress Shortcode语法错误,意外 '}',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26026831/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com