forked from EvanAgee/vuejs-wordpress-theme-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfunctions.php
73 lines (61 loc) · 1.9 KB
/
functions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
require_once 'functions-custom.php';
// Remove all default WP template redirects/lookups.
remove_action( 'template_redirect', 'redirect_canonical' );
// Redirect all requests to index.php so the Vue app is loaded and 404s aren't thrown.
function remove_redirects() {
add_rewrite_rule( '^/(.+)/?', 'index.php', 'top' );
}
add_action( 'init', 'remove_redirects' );
/* function v_include_scripts( $name, $subdir_path ){} */
// Load scripts.
function load_vue_scripts() {
$subdir_file = '/dist/js/chunk-vendors.js';
wp_enqueue_script(
'vuejs-js-chunk-vendors',
get_stylesheet_directory_uri() . $subdir_file,
array(),
filemtime( get_stylesheet_directory() . $subdir_file ),
true
);
wp_deregister_script( 'vuejs' ); // make sure vue is not otherwise included.
$subdir_file = '/dist/js/app.js';
wp_enqueue_script(
'vuejs-js-app',
get_stylesheet_directory_uri() . $subdir_file,
array(),
filemtime( get_stylesheet_directory() . $subdir_file ),
true
);
$path = '/';
if ( is_multisite() ) {
$blog_details = get_blog_details();
$path = $blog_details->path;
}
// The nonce is used by axios when accessing the REST-API. If it's not present, your uid is 0.
wp_localize_script(
'vuejs-js-app',
'vueWp',
array(
'apiNonce' => wp_create_nonce( 'wp_rest' ),
'siteUrl' => get_site_url(),
'path' => $path,
)
);
$subdir_file = '/dist/css/app.css';
wp_enqueue_style(
'vuejs-app',
get_stylesheet_directory_uri() . $subdir_file,
null,
filemtime( get_stylesheet_directory() . $subdir_file )
);
$subdir_file = '/dist/css/chunk-vendors.css';
wp_enqueue_style(
'vuejs-chunk-vendors',
get_stylesheet_directory_uri() . $subdir_file,
null,
filemtime( get_stylesheet_directory() . $subdir_file )
);
wp_enqueue_style( 'material-icons', 'https://fonts.googleapis.com/icon?family=Material+Icons#asyncload', array() );
}
add_action( 'wp_enqueue_scripts', 'load_vue_scripts', 100 );