Next Pinboard Update
-
Please add the following line to the pinboard_copyright_notice() function in the Theme Functions (functions.php) file:
function pinboard_copyright_notice() {
$copyright = pinboard_get_option( ‘copyright_notice’ );
$copyright = str_replace( ‘%year%’, date( ‘Y’ ), $copyright );
$copyright = str_replace( ‘%blogname%’, get_bloginfo( ‘name’ ), $copyright );
$copyright = str_replace( ‘%blogdescription%’, get_bloginfo( ‘description’ ), $copyright );
echo esc_html( $copyright );
}I have to add this line of code to my installation after each update to Pinboard
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Next Pinboard Update’ is closed to new replies.