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
|
<?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' );
|