Created
September 27, 2016 10:28
-
-
Save wpflippercode/e0853d2797793a7707e5b68314de2694 to your computer and use it in GitHub Desktop.
Remove icons from post's meta information in wp posts pro plugin.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter('wpp_comments_icon','wpp_comments_icon'); | |
function wpp_comments_icon($icon) { | |
$icon = ''; | |
return $icon; | |
} | |
add_filter('wpp_date_icon','wpp_date_icon'); | |
function wpp_date_icon($icon) { | |
$icon = ''; | |
return $icon; | |
} | |
add_filter('wpp_author_icon','wpp_author_icon'); | |
function wpp_author_icon($icon) { | |
$icon = ''; | |
return $icon; | |
} | |
add_filter('wpp_views_icon','wpp_views_icon'); | |
function wpp_views_icon($icon) { | |
$icon = ''; | |
return $icon; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can remove or modify icons used in post's meta information easily. Below are the hooks name for this purpose.