Wordpress:创建主题非特定的短代码?

时间:2013-12-10 22:31:00

标签: php wordpress wordpress-theming shortcode

我知道如何在特定wordpress-theme的functions.php中创建自己的短代码。有没有办法创建全局短码,它独立于使用的主题工作?

1 个答案:

答案 0 :(得分:2)

  1. 在wp-content / plugins / my-custom-global-shortcode /
  2. 中创建my-custom-global-shortcode.php
  3. 将此代码粘贴到该文件中,您将拥有一个正常运行的全局短代码。
  4. 修改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;
     }
     ?>