我知道如何在特定wordpress-theme的functions.php中创建自己的短代码。有没有办法创建全局短码,它独立于使用的主题工作?
答案 0 :(得分:2)
修改shortcode_handler功能以进行出价
/*
Plugin Name: Shortcode Plugin
Plugin URI:
Description: My Global Shortcode
Version: 1.0
Author:
Author URI:
*/
//register [my-custom-global-shortcode]
add_shortcode("my-custom-global-shortcode", "shortcode_handler");
// the function called with the shortcode
function shortcode_handler() {
$html = '<div>Hello World!</div>';
return $html;
}
?>