Update method visibility

This commit is contained in:
Robin Cornett
2019-10-25 09:21:33 -04:00
parent cbe5497553
commit abf7488c8b
@@ -62,7 +62,7 @@ class DisplayFeaturedImageGenesisOutputAuthor {
/** /**
* Echo the author featured image. * Echo the author featured image.
*/ */
protected function do_featured_image() { private function do_featured_image() {
if ( ! $this->instance['show_featured_image'] ) { if ( ! $this->instance['show_featured_image'] ) {
return; return;
} }
@@ -86,7 +86,7 @@ class DisplayFeaturedImageGenesisOutputAuthor {
* *
* @return string * @return string
*/ */
protected function get_gravatar() { private function get_gravatar() {
if ( ! $this->instance['show_gravatar'] ) { if ( ! $this->instance['show_gravatar'] ) {
return ''; return '';
} }
@@ -106,7 +106,7 @@ class DisplayFeaturedImageGenesisOutputAuthor {
* *
* @return string * @return string
*/ */
public function get_author_description() { private function get_author_description() {
if ( ! $this->instance['author_info'] ) { if ( ! $this->instance['author_info'] ) {
return ''; return '';
} }