forked from roots/sage
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfunctions.php
76 lines (57 loc) · 2.82 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
74
75
76
<?php
/**
* Roots functions
*/
// my
add_filter('show_admin_bar', '__return_false');
// /my
if (!defined('__DIR__')) { define('__DIR__', dirname(__FILE__)); }
require_once locate_template('/inc/util.php'); // Utility functions
require_once locate_template('/inc/config.php'); // Configuration and constants
require_once locate_template('/inc/activation.php'); // Theme activation
require_once locate_template('/inc/template-tags.php'); // Template tags
require_once locate_template('/inc/cleanup.php'); // Cleanup
require_once locate_template('/inc/scripts.php'); // Scripts and stylesheets
require_once locate_template('/inc/htaccess.php'); // Rewrites for assets, H5BP .htaccess
require_once locate_template('/inc/hooks.php'); // Hooks
require_once locate_template('/inc/actions.php'); // Actions
require_once locate_template('/inc/widgets.php'); // Sidebars and widgets
require_once locate_template('/inc/custom.php'); // Custom functions
function roots_setup() {
// Make theme available for translation
load_theme_textdomain('roots', get_template_directory() . '/lang');
// Register wp_nav_menu() menus (http://codex.wordpress.org/Function_Reference/register_nav_menus)
register_nav_menus(array(
'primary_navigation' => __('Primary Navigation', 'roots'),
));
// Add post thumbnails (http://codex.wordpress.org/Post_Thumbnails)
add_theme_support('post-thumbnails');
// set_post_thumbnail_size(150, 150, false);
// add_image_size('category-thumb', 300, 9999); // 300px wide (and unlimited height)
// Add post formats (http://codex.wordpress.org/Post_Formats)
// add_theme_support('post-formats', array('aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio', 'chat'));
// Tell the TinyMCE editor to use a custom stylesheet
add_editor_style('css/editor-style.css');
}
add_action('after_setup_theme', 'roots_setup');
function add_listener_woopra_tracking() {
?>
<script type="text/javascript">
document.addEventListener( 'wpcf7mailsent', function( event ) {
var woopraEvents = {
"general_contact": "dev_docs_general_contact",
"custom_app_contact": "dev_docs_custom_app_contact",
};
var inputs = event.detail.inputs;
var emailObj = inputs.filter(input => input.name === "your-email")[0];
var wooEvent = woopraEvents[window.type_of_post];
if (emailObj && emailObj.value && wooEvent && typeof woopra !== "undefined") {
var email = emailObj.value;
woopra.identify({ email: email });
woopra.track(wooEvent, { email: email });
}
}, false );
</script>
<?php
}
add_action('wp_footer', 'add_listener_woopra_tracking');