function hupso_the_excerpt($content) { global $hupso_state, $post; $hupso_state = 'normal'; $hupso_show_excerpts = get_option('hupso_show_excerpts', '1'); if ($hupso_show_excerpts == 1 && $post->post_type != 'attachment') { return hupso_the_content($content); } else { return $content; } }
function hupso_the_widget($content) { global $hupso_state; $hupso_state = 'widget'; return hupso_the_content($content); }