/* Plugin Name: Custom Functions Plugin URI: https://innatemovement.com Description: Collection of functionality and shortcodes to extend WP Version: 1.0 Author: A. Scott McCulloch, PhD Author URI: http://tapintu.com License: GPLv2 or later */ function write_copyright() { ob_start(); echo '©'.date("Y").' Innate Movement & Andrea McCulloch'; $copyright = ob_get_clean(); return $copyright; } add_shortcode('write-copyright', 'write_copyright');