Skip to content

Instantly share code, notes, and snippets.

@2shrestha22
Last active April 6, 2020 18:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 2shrestha22/b19495201cf138be7cdaf8086a6cd27d to your computer and use it in GitHub Desktop.
Save 2shrestha22/b19495201cf138be7cdaf8086a6cd27d to your computer and use it in GitHub Desktop.
Removes Spacious Footer Credits With Your Own
<?php
//copy below this line, you shouldn't include <?php
//paste this code in your function.php
//spacious footer
if (! function_exists('spacious_custom_credits')) {
add_action('init','remove_default_credits');
function remove_default_credits(){
remove_action('spacious_footer_copyright','spacious_footer_copyright');
}
add_filter('spacious_footer_copyright', 'spacious_custom_credits',10);
function spacious_custom_credits(){
$credit_value = '<div class="copyright">Copyright &copy; ' . date('Y') . ' <a href="' . esc_url( home_url( '/' ) ) . '" title="' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '" ><span>' . get_bloginfo( 'name', 'display' ) . '.</span></a> ' .get_option('spacious_custom_credits'). '</div>';
echo $credit_value;
}
}
if (! function_exists('spacious_custom_options')) {
add_action('customize_register', 'spacious_custom_options', 100, 1);
function spacious_custom_options( $wp_customize ) {
$wp_customize->add_section('spacious_footer_options', array(
'capabitity' => 'edit_theme_options',
//'priority' => 0,
'title' => __('Footer Credit', 'spacious')
));
$wp_customize->add_setting( 'spacious_custom_credits' , array(
'default' => '<br/>Configure in Appearance => Customize => Footer',
'transport' => 'refresh',
'capability' => 'edit_theme_options',
'type' => 'option',
) );
$wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'spacious_custom_credits', array(
'label' => __( 'Footer Text', 'spacious' ),
'section' => 'spacious_footer_options',
'settings' => 'spacious_custom_credits',
) ) );
}
}
?>
@curious-harshit
Copy link

Thanks a Lot.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment