开发者 | louisho5 |
---|---|
更新时间 | 2022年8月3日 15:51 |
WordPress版本: | 6.0 |
function custom_shortcode( $atts ) {
$attributes = shortcode_atts( array(
'name' => 'world'
), $atts );
return '<h1>Hello ' . $attributes['name'] . '!</h1>';
}
add_shortcode( 'helloworld', 'custom_shortcode' );
Shortcode: [helloworld] Outputs "Hello world!" Shortcode: [helloworld name=”Bob”] Outputs "Hello Bob!"