Guest User

Untitled

a guest
Dec 13th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. // phpを使用していない場合
  2. function mod_cv() {
  3. $html = file_get_contents(TEMPLATEPATH . '/inc/mod_cv.php');
  4. return $html;
  5. }
  6. add_shortcode('mod-cv', 'mod_cv');
  7.  
  8. // phpを使用している場合
  9. function breadcrumb() {
  10. ob_start();
  11. include(TEMPLATEPATH . '/inc/breadcrumb.php');
  12. $html = ob_get_contents();
  13. ob_end_clean();
  14. return $html;
  15. }
  16. add_shortcode('breadcrumb', 'breadcrumb');
Add Comment
Please, Sign In to add comment