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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
<?php
/*
Plugin Name: Site Plugin for danix.xyz
Description: Site specific code changes for danix.xyz
Plugin URI: https://danix.xyz
Version: 0.7.3
Author: Danilo 'danix' Macri
Author URI: https://danix.xyz
*/
/**
* Disable admin bar sitewide
*/
show_admin_bar( __return_false() );
/**
* Allow Shortcodes inside the html widget
*/
//add_filter( 'widget_text', 'do_shortcode' );
/**
* make sure the links menu in the admin is visible
*/
add_filter( 'pre_option_link_manager_enabled', '__return_true' );
/**
* The gravatar shortcode
*
* @param email $email email address used to retrieve the gravatar image
* @return string HTML the image tag which will display the gravatar image.
*
*/
function danix_gravatar( $atts ) {
extract(
shortcode_atts(
array(
'email' => '',
'size' => '200',
'default' => '',
'alt' => '',
),
$atts
)
);
if ( empty( $email ) ) {
return '';
}
$output = get_avatar( $email, $size, $default, $alt );
return $output;
}
add_shortcode( 'gravatar', 'danix_gravatar' );
/**
* Added baguette.js to display a lightbox for images and galleries
*/
function baguette_register_assets() {
wp_register_script( 'baguettebox', plugin_dir_url( __FILE__ ) . '/baguette/baguetteBox.min.js', array(), '1.11.1', true );
wp_register_script( 'baguetteload', plugin_dir_url( __FILE__ ) . '/baguette/baguetteLoad.js', array(), '1.11.1', true );
wp_register_style( 'baguettebox-css', plugin_dir_url( __FILE__ ) . '/baguette/baguetteBox.min.css', array(), '1.11.1' );
}
add_action( 'wp_enqueue_scripts', 'baguette_register_assets' );
function baguette_enqueue_assets() {
if ( has_block( 'gallery' ) || has_block( 'image' ) ) {
wp_enqueue_script( 'baguettebox' );
wp_enqueue_script( 'baguetteload' );
wp_enqueue_style( 'baguettebox-css' );
}
}
add_action( 'wp_enqueue_scripts', 'baguette_enqueue_assets' );
/*
* Do not translate smileys into emoticons.
*/
add_filter( 'option_use_smilies', '__return_false' );
/*
# Add matomo tracking js code to head
*/
if ( ! function_exists( 'matomo_tracking' ) ) :
function matomo_tracking() {
?>
<!-- Matomo -->
<script type="text/javascript">
var _paq = window._paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(["setDocumentTitle", document.domain + "/" + document.title]);
_paq.push(["setCookieDomain", "*.danix.xyz"]);
_paq.push(["setDomains", ["*.danix.xyz"]]);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//lucky.danix.xyz/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '1']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
<?php
}
endif;
add_action( 'wp_head', 'matomo_tracking' );
|