Skip to content

Instantly share code, notes, and snippets.

@SeanTOSCD
Created January 2, 2020 16:58
Show Gist options
  • Save SeanTOSCD/292566d3cda9378c6b12cd747a2cac7d to your computer and use it in GitHub Desktop.
Save SeanTOSCD/292566d3cda9378c6b12cd747a2cac7d to your computer and use it in GitHub Desktop.
Themedd copyright edit
<?php // DO NOT COPY THIS LINE
/**
* Filter the Themedd copyright text for custom output
*/
function custom_themedd_copyright( $copyright ) {
$copyright = 'Custom copyright &copy; text with year (' . date( 'Y' ) . ') and site name (' . get_bloginfo( 'name' ) . ')!' ;
return $copyright;
}
add_filter( 'themedd_copyright', 'custom_themedd_copyright' );
@Jorgellanos1
Copy link

very good thanks for the contribution, there will be some way to activate sub menus in themedd is now disabled and it does not work thanks.

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