Advertisement
Guest User

Untitled

a guest
Oct 1st, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. function Include_my_php($params = array()) {
  2. extract(shortcode_atts(array('file' => 'default'), $params));
  3. ob_start();
  4. include(get_theme_root() . '/' . get_template() . "/$file.php");
  5. return ob_get_clean();
  6. }
  7. add_shortcode('myphp', 'Include_my_php');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement