avatar

The members avatar shortcode.

Published Date - July 31, 2023

Description

add_shortcode( 'avatar',     'members_get_avatar_shortcode' );

Usage

The following example is for adding a shortcode.

[avatar ]

do_shortcode( "[avatar]" ); 

Defined

The shortcode is defined in the following location(s).

members/inc/functions-shortcodes.php

add_shortcode( 'avatar',     'members_get_avatar_shortcode' );

Callback function

function members_get_avatar_shortcode() {}