WordPress custom plugin will display on post but will not print
Here is a simplified version of the plugin. It does what it is supposed to do. It displays the modified time like Modified: February 23, 2016. <?php /** */ function modified_date($content) { $post = get_post(); if (is_page()) { } else…