mirror of
https://github.com/Rushilwiz/dear-anon.git
synced 2025-04-22 12:59:55 -04:00
19 lines
538 B
PHP
19 lines
538 B
PHP
<?php
|
|
|
|
function ilovewp_option_defaults() {
|
|
$defaults = array(
|
|
|
|
/* translators: This is the copyright notice that appears in the footer of the website. */
|
|
'footer-text' => sprintf( esc_html__( 'Copyright © %1$s %2$s.', 'podcast' ), date( 'Y' ), get_bloginfo( 'name' ) ),
|
|
);
|
|
|
|
return $defaults;
|
|
}
|
|
|
|
function ilovewp_get_default( $option ) {
|
|
$defaults = ilovewp_option_defaults();
|
|
$default = ( isset( $defaults[ $option ] ) ) ? $defaults[ $option ] : false;
|
|
|
|
return $default;
|
|
}
|