📜  在 wordpress 中添加简码 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:48.355000             🧑  作者: Mango

代码示例6
// function that runs when shortcode is called
function wpb_demo_shortcode() { 
 
// Things that you want to do. 
$message = 'Hello world!'; 
 
// Output needs to be return
return $message;
} 
// register shortcode
add_shortcode('greeting', 'wpb_demo_shortcode');