• Source
    1. <?php
    2.  
    3. //ここから
    4. function Include_my_php($params = array()) {
    5. extract(shortcode_atts(array(
    6. 'file' => 'default'
    7. ), $params));
    8. ob_start();
    9. include(get_theme_root() . '/' . get_template() . "/$file.php");
    10. return ob_get_clean();
    11. }
    12.  
    13. add_shortcode('myphp', 'Include_my_php');
    14. //ここまで
    15.  
    16. ?>