-
Notifications
You must be signed in to change notification settings - Fork 1
/
extras.php
executable file
·61 lines (53 loc) · 1.55 KB
/
extras.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
<?php
/**
* Custom functions that act independently of the theme templates
*
* Eventually, some of the functionality here could be replaced by core features.
*
* @package StanleyWP
*/
/**
* Adds custom classes to the array of body classes.
*
* @param array $classes Classes for the body element.
* @return array
*/
function stanleywp_body_classes( $classes ) {
// Adds a class of group-blog to blogs with more than 1 published author.
if ( is_multi_author() ) {
$classes[] = 'group-blog';
}
// Adds a class of hfeed to non-singular pages.
if ( ! is_singular() ) {
$classes[] = 'hfeed';
}
return $classes;
}
add_filter( 'body_class', 'stanleywp_body_classes' );
/**
* Add a pingback url auto-discovery header for singularly identifiable articles.
*/
function stanleywp_pingback_header() {
if ( is_singular() && pings_open() ) {
echo '<link rel="pingback" href="', esc_url( get_bloginfo( 'pingback_url' ) ), '">';
}
}
add_action( 'wp_head', 'stanleywp_pingback_header' );
/**
* Add Bootstrap button classes to tag cloud
*/
function stanleywp_tag_cloud_btn( $return ) {
$return = str_replace('<a', '<a class="btn btn-secondary btn-sm"', $return );
return $return;
}
add_filter( 'wp_tag_cloud', 'stanleywp_tag_cloud_btn' );
/**
* Customize the Read More Button
**/
function stanleywp_modify_read_more_link() {
return sprintf( '<a class="more-link btn btn-sm btn-secondary" href="%1$s">%2$s</a>',
get_permalink(),
__( 'Read More', 'stanleywp' )
);
}
add_filter( 'the_content_more_link', 'stanleywp_modify_read_more_link' );