diff --git a/comicpress-options.php b/comicpress-options.php index 3d38579..760a62d 100644 --- a/comicpress-options.php +++ b/comicpress-options.php @@ -49,6 +49,7 @@ function comicpress_admin() { 'rascal_says', 'disable_comment_note', 'enable_numbered_pagination', + 'enable_comment_count_in_rss', 'comic_clicks_next', 'disable_default_comic_nav', 'enable_widgetarea_use_sidebar_css', diff --git a/functions.php b/functions.php index c7dc854..9bf255a 100644 --- a/functions.php +++ b/functions.php @@ -197,7 +197,9 @@ function comicpress_load_options() { 'enable_comicpress_debug' => true, 'enable_full_post_check' => false, - 'enable_blogroll_off_links' => false + 'enable_blogroll_off_links' => false, + + 'enable_comment_count_in_rss' => false ) as $field => $value) { $comicpress_options[$field] = $value; diff --git a/options/generaloptions.php b/options/generaloptions.php index 3e33812..7c05603 100644 --- a/options/generaloptions.php +++ b/options/generaloptions.php @@ -46,7 +46,16 @@