Guest User

Untitled

a guest
Jul 17th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <?php
  2.  
  3. // これは子テーマを作る上で元から書かれている
  4. add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
  5. function theme_enqueue_styles() {
  6. wp_enqueue_style( 'style', get_template_directory_uri() . '/style.css' );
  7. wp_enqueue_style( 'child-style',
  8. get_stylesheet_directory_uri() . '/style.css',
  9. array('style')
  10. );
  11. }
  12.  
  13. // ここから下を追加
  14. function showHello() {
  15. return 'Hello World!';
  16. }
  17. add_shortcode('hello', 'showHello');
Add Comment
Please, Sign In to add comment