diff --git a/includes/widgets/fields/author-defaults.php b/includes/widgets/fields/author-defaults.php index b49278a..577b79f 100644 --- a/includes/widgets/fields/author-defaults.php +++ b/includes/widgets/fields/author-defaults.php @@ -2,7 +2,7 @@ return array( 'title' => '', - 'show_featured_image' => 0, + 'show_featured_image' => 1, 'featured_image_alignment' => 'alignnone', 'featured_image_size' => 'medium', 'gravatar_alignment' => 'left', diff --git a/includes/widgets/fields/cpt-defaults.php b/includes/widgets/fields/cpt-defaults.php index 9b41376..0f95e68 100644 --- a/includes/widgets/fields/cpt-defaults.php +++ b/includes/widgets/fields/cpt-defaults.php @@ -3,10 +3,10 @@ return array( 'title' => '', 'post_type' => 'post', - 'show_image' => 0, + 'show_image' => 1, 'image_alignment' => 'alignnone', 'image_size' => 'medium', - 'show_title' => 0, + 'show_title' => 1, 'show_content' => 0, 'custom_content' => '', 'archive_link' => 0, diff --git a/includes/widgets/fields/term-defaults.php b/includes/widgets/fields/term-defaults.php index 4a6ce0a..b809fef 100644 --- a/includes/widgets/fields/term-defaults.php +++ b/includes/widgets/fields/term-defaults.php @@ -4,10 +4,10 @@ return array( 'title' => '', 'taxonomy' => 'category', 'term' => '', - 'show_image' => 0, - 'image_alignment' => '', + 'show_image' => 1, + 'image_alignment' => 'alignnone', 'image_size' => 'medium', - 'show_title' => 0, + 'show_title' => 1, 'show_content' => 0, 'custom_content' => '', 'archive_link' => 0,