{
    "POST": [
        {
            "name": "Post title",
            "shortcode": "{post_title}",
            "callable": "get_the_title"
        },
        {
            "name": "Post ID",
            "shortcode": "{post_id}",
            "callable": "get_the_ID"
        },
        {
            "name": "Post link",
            "shortcode": "{post_link}",
            "callable": "get_permalink"
        },
        {
            "name": "Post date",
            "shortcode": "{post_date}",
            "callable": "get_the_date",
            "format": "date_format"
        },
        {
            "name": "Post modified date",
            "shortcode": "{post_modified_date}",
            "callable": "get_the_modified_date",
            "format": "date_format"
        },
        {
            "name": "Post time",
            "shortcode": "{post_time}",
            "callable": "get_post_time",
            "format": "time_format"
        },
        {
            "name": "Post comments count",
            "shortcode": "{post_comments_count}",
            "callable": "get_comment_count",
            "status": "total_comments"
        },
        {
            "name": "Post content",
            "shortcode": "{post_content}",
            "callable": "get_the_content"
        },
        {
            "name": "Post excerpt",
            "shortcode": "{post_excerpt}",
            "callable": "get_the_excerpt"
        },
        {
            "name": "Featured image",
            "shortcode": "{featured_image:large}",
            "callable": "get_the_post_thumbnail_url",
            "image_url": true
        }
    ],
    "AUTHOR": [
        {
            "name": "Author name",
            "shortcode": "{author_name}",
            "callable": "get_the_author_meta",
            "parameter": "display_name"
        },
        {
            "name": "Author bio",
            "shortcode": "{author_bio}",
            "callable": "get_the_author_meta",
            "parameter": "description"
        },
        {
            "name": "Author email",
            "shortcode": "{author_email}",
            "callable": "get_the_author_meta",
            "parameter": "user_email"
        },
        {
            "name": "Author website",
            "shortcode": "{author_website}",
            "callable": "get_the_author_meta",
            "parameter": "user_url"
        },
        {
            "name": "Author avatar",
            "shortcode": "{author_avatar}",
            "callable": "get_avatar_url",
            "image_url": true
        },
        {
            "name": "Author meta - add key after:",
            "shortcode": "{author_meta:description}",
            "callable": "get_the_author_meta",
            "key": true
        }
    ],
    "SITE": [
        {
            "name": "Site title",
            "shortcode": "{site_title}",
            "callable": "get_bloginfo",
            "parameter": "name"
        },
        {
            "name": "Site tagline",
            "shortcode": "{site_tagline}",
            "callable": "get_bloginfo",
            "parameter": "description"
        },
        {
            "name": "Site URL",
            "shortcode": "{site_url}",
            "callable": "get_bloginfo",
            "parameter": "url"
        },
        {
            "name": "Logout URL",
            "shortcode": "{logout_url}",
            "callable": "wp_logout_url"
        },
        {
            "name": "URL parameter - add key after:",
            "shortcode": "{url_parameter:name}",
            "callable": "request_parameter"
        }
    ],
    "ARCHIVE": [
        {
            "name": "Archive title",
            "shortcode": "{archive_title}",
            "callable": "get_the_archive_title"
        },
        {
            "name": "Archive description",
            "shortcode": "{archive_description}",
            "callable": "get_the_archive_description"
        }
    ],
    "CUSTOM FIELD": [
        {
            "name": "Post custom field",
            "shortcode": "{post_custom_field:field_name}",
            "callable": "get_post_meta",
            "key": true,
            "image_url": true
        },
        {
            "name": "ACF field",
            "shortcode": "{acf_field:field_name}",
            "callable": "get_field",
            "key": true,
            "image_url": true
        },
        {
            "name": "ACF image",
            "shortcode": "{acf_image:field_name:large}",
            "callable": "get_field",
            "key": true,
            "image_url": true
        },
        {
            "name": "Metabox field",
            "shortcode": "{metabox_field:field_name}",
            "callable": "rwmb_get_value",
            "key": true,
            "image_url": true
        },
        {
            "name": "Metabox image",
            "shortcode": "{metabox_image:field_name:large}",
            "callable": "rwmb_get_value",
            "key": true,
            "image_url": true
        },
        {
            "name": "Pods field",
            "shortcode": "{pods_field:field_name}",
            "callable": "pods_field",
            "key": true,
            "image_url": true
        },
        {
            "name": "Pods image",
            "shortcode": "{pods_image:field_name:large}",
            "callable": "pods_field",
            "key": true,
            "image_url": true
        },
        {
            "name": "Toolset field",
            "shortcode": "{toolset_field:field_name}",
            "callable": "get_post_meta",
            "key": true,
            "image_url": true
        },
        {
            "name": "JetEngine field",
            "shortcode": "{jetengine_field:field_name}",
            "callable": "get_post_meta",
            "key": true,
            "image_url": true
        },
        {
            "name": "JetEngine image",
            "shortcode": "{jetengine_image:field_name:large}",
            "callable": "get_post_meta",
            "key": true,
            "image_url": true
        }
    ],
    "TERM":[
        {
            "name": "Term ID",
            "shortcode": "{term_id}",
            "callable": "term",
            "key": true
        },
        {
            "name": "Term name",
            "shortcode": "{term_name}",
            "callable": "term",
            "key": true
        },
        {
            "name": "Term description",
            "shortcode": "{term_description}",
            "callable": "term",
            "key": true
        },
        {
            "name": "Term url",
            "shortcode": "{term_url}",
            "callable": "term",
            "key": true
        }, 
        {
            "name": "Term count",
            "shortcode": "{term_count}",
            "callable": "term",
            "key": true
        },
        {
            "name": "Term meta",
            "shortcode": "{term_meta:meta_name}",
            "callable": "get_term_meta",
            "key": true
        }
    ]
}