-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathfunctions.php
44 lines (39 loc) · 1.37 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
<?php
/*
* You can add your own functions here. You can also override functions that are
* called from within the parent theme. For a complete list of function you can
* override here, please see the docs:
*
* /~https://github.com/raamdev/independent-publisher#functions-you-can-override-in-a-child-theme
*
*/
/*
* Uncomment the following to add a favicon to your site. You need to add favicon
* image to the images folder of Independent Publisher Child Theme for this to work.
*/
/*
function blog_favicon() {
echo '<link rel="Shortcut Icon" type="image/x-icon" href="'.get_bloginfo('stylesheet_directory').'/images/favicon.ico" />' . "\n";
}
add_action('wp_head', 'blog_favicon');
*/
/*
* Add version number to main style.css file with version number that matches the
* last modified time of the file. This helps when making frequent changes to the
* CSS file as the browser will always load the newest version.
*/
/*
function independent_publisher_stylesheet() {
wp_enqueue_style( 'independent-publisher-style', get_stylesheet_uri(), '', filemtime( get_stylesheet_directory() . '/style.css') );
}
*/
/*
* Modifies the default theme footer.
* This also applies the changes to JetPack's Infinite Scroll footer, if you're using that module.
*/
/*
function independent_publisher_footer_credits() {
$my_custom_footer = 'This is my custom footer.';
return $my_custom_footer;
}
*/