如何使用短代码在Wordpress中打印“Hello Message”?

时间:2016-02-25 06:38:53

标签: wordpress

我需要打印“Hello Message”。如何使用短代码在WordPress中打印此消息?

2 个答案:

答案 0 :(得分:1)

function HelloWorldShortcode() {
    return '<p>Hello World!</p>';
}
add_shortcode('helloworld', 'HelloWorldShortcode')

然后你只需输入:

[helloworld]

在任何地方使用它

答案 1 :(得分:0)

试试这个

function my_amazing_shortcode_handler($args)
{
    $args=shortcode_atts(array('name' => 'dude'), $args);
    return 'Hello, '.$args['name'];
}

add_shortcode('hello_msg', 'my_amazing_shortcode_handler');

使用方式:
[hello_msg] - 生成Hello, dude [hello_msg name='Peter'] - 生成Hello, Peter