Skip to content

Instantly share code, notes, and snippets.

@2shrestha22
Last active August 10, 2019 00:26
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/8bf5f8255e55d8abf6fb2857037f0c79 to your computer and use it in GitHub Desktop.
Save 2shrestha22/8bf5f8255e55d8abf6fb2857037f0c79 to your computer and use it in GitHub Desktop.
footer editor for flash theme (ThemeGrill)
<?php
//copy below this line, you shouldn't include <?php
//paste this code in your function.php
//flash footer editor
if (! function_exists('flash_custom_credits')) {
add_action('init','remove_default_flash_credits');
function remove_default_flash_credits(){
remove_action('flash_copyright_area','flash_footer_copyright');
}
add_filter('flash_copyright_area', 'flash_custom_credits');
function flash_custom_credits(){
$credit_value ='<div class="copyright"><span class="copyright-text">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('flash_custom_credits'). '</span></div>';
echo $credit_value;
}
}
if (! function_exists('flash_custom_options')) {
add_action('customize_register', 'flash_custom_options', 100, 1);
function flash_custom_options( $wp_customize ) {
$wp_customize->add_section('flash_footer_options', array(
'capabitity' => 'edit_theme_options',
//'priority' => 0,
'title' => __('Footer', 'flash')
));
$wp_customize->add_setting( 'flash_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, 'flash_custom_credits', array(
'label' => __( 'Footer Text', 'flash' ),
'section' => 'flash_footer_options',
'settings' => 'flash_custom_credits',
) ) );
}
}
?>
@ctsavong562
Copy link

Hi Sangam,

I am using the free version of Flash Theme and tried using this snippet for my footer.php. I was wondering, do I need to install a plugin before editing the footer.php? I ended up just making the #bottom.footer to: display:none; and then adding the Headline widget from SiteOrigin to the footer. I managed to "customize" it to have the company's name and 2018 on there, but I am not sure if that would affect the SEO for the site. Or is it because I am using SiteOrigin that the snippet doesn't work for me? Thanks!

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