mirror of
https://github.com/10h30/display-featured-image-genesis.git
synced 2026-07-11 18:46:03 +09:00
Update method visibility
This commit is contained in:
@@ -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 '';
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user