Few days ago I worked on a project. Client was wanting extra two new types (review & question) at comment form. All things implemented successfully. Only problem was that avatar for review/comment type was not coming at frontend & backend. I researched too much and got that avatar is allowed for comment type only. But… Continue Reading
avatar
Add Avatar or Logo Before Site Title
Here is the snippet about this small things. Adding My Avatar Before The Site Title add_action( ‘genesis_site_title’, ‘gd_add_my_avatar’, 9 ); function gd_add_my_avatar() { printf( ‘<div %s>’, genesis_attr( ‘my-avatar’ ) ); echo get_avatar( ‘ENTER YOUR EMAIL ID HERE’, 64 ); echo ‘</div>’; } Here 64 is the avatar size. You will adjust the avatar size by… Continue Reading