From 92b6794cd7d78c17691b6899c83a9523f26d68fb Mon Sep 17 00:00:00 2001 From: Weston Ruter Date: Tue, 20 Mar 2018 17:16:10 -0700 Subject: [PATCH] Add support for comments_live_list theme support flag --- functions.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/functions.php b/functions.php index e20556d..3e47fd9 100644 --- a/functions.php +++ b/functions.php @@ -31,7 +31,9 @@ function ampconf_setup() { */ load_theme_textdomain( 'ampconf', get_template_directory() . '/languages' ); - add_theme_support( 'amp' ); + add_theme_support( 'amp', array( + 'comments_live_list' => true, + ) ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' );