PHP WORDPRESS CUSTOM DEFAULT GRAVATAR

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP WORDPRESS CUSTOM DEFAULT GRAVATAR相关的知识,希望对你有一定的参考价值。

//place this in your functions.php file
<?php 
add_filter('avatar_defaults', 'newgravatar'); function newgravatar ($avatar_defaults) {$myavatar = get_bloginfo('template_directory') . '/images/default_gravatar.png';     $avatar_defaults[$myavatar] = "yournamehere"; return $avatar_defaults;}
?>
 
//add this where you want your gravatar, notice the default url "<pathtourl>" removed
<?php echo get_avatar($comment,$size='48',$default='' ); ?></div>

以上是关于PHP WORDPRESS CUSTOM DEFAULT GRAVATAR的主要内容,如果未能解决你的问题,请参考以下文章

在Wordpress中自定义阅读更多

Wordpress自定义菜单

WordPress后台添加侧边栏菜单

具有单个文件组件的 WordPress Vue 插件 - 无法使用导入

WordPress的编译器功能扩展

WordPress 自动初始化数据库