5ally

my_react_theme/functions.php

Feb 6th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. <?php
  2. // This file is put in wp-content/themes/my_react_theme/
  3.  
  4. function my_theme_setup() {
  5.     // Add support for automatic <title> tag.
  6.     add_theme_support( 'title-tag' );
  7. }
  8. add_action( 'after_setup_theme', 'my_theme_setup' );
  9.  
  10. function my_theme_scripts() {
  11.     // Enqueue the Backbone JavaScript Client.
  12.     wp_enqueue_script( 'wp-api' );
  13. }
  14. add_action( 'wp_enqueue_scripts', 'my_theme_scripts' );
Add Comment
Please, Sign In to add comment