Plugin info

Total downloads: 12,842
Active installs: 700
Total reviews: 8
Average rating: 5
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 3
Last updated: 1/12/2024 (719 days ago)
Added to WordPress: 7/24/2017 (8 years old)
Minimum WordPress version: 4.1
Tested up to WordPress version: 6.4.7
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 719 days ago • 8 reviews

28/100

Is Display custom fields in the frontend – Post and User Profile Fields abandoned?

Possibly abandoned (last update 719 days ago).

Compatibility

Requires WordPress: 4.1
Tested up to: 6.4.7
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

WP Page Templates
Rating 2.7/5 (3 reviews)Active installs 400
Hide Header on Posts for Landing Pages
Rating 2.7/5 (3 reviews)Active installs 200
WooCommerce Product Page Templates
Rating 3.0/5 (2 reviews)Active installs 80
WooCommerce Simple Frontend Manager
Rating 0.0/5 (0 reviews)Active installs 10

Description

UPDATE

Our plugin now includes a settings page where you must whitelist every field that you want our shortcode to display in the front end, for security reasons. Your existing shortcodes will not work until you whitelist those field keys.

The “sanitization” parameter has been removed. All the output is sanitized with wp_kses_post always.
The “wp_filter” parameter has been removed. Now we have more specific parameters like wpautop=”yes” to turn line breaks into paragraphs, and do_shortcodes=”yes” to parse shortcodes.

Display post and user custom fields data anywhere on the frontend using a shortcode, including advanced custom fields (ACF) fields.

  • Do you want to display information from a user profile on the frontend?

  • Do you want to display custom fields from a post on the frontend?

  • Have you created metaboxes with Advanced Custom Fields and you want to display those fields?

Use this plugin to display any field for a post or user profile on the frontend.

Basic examples

  • Display email of the current user: [vg_display_data key="user_email" data_source="user_data"]

  • Display first name of the current user: [vg_display_data key="first_name" data_source="user_meta"]

  • Display full name of the current user: [vg_display_data key="first_name,last_name" data_source="user_meta"]

  • Display the title of the current post: [vg_display_data key="post_title" data_source="post_data"]

  • Display the excerpt of the current post: [vg_display_data key="post_excerpt" data_source="post_data"]

  • Display the categories of the post ID = 20: [vg_display_data object_id="20" key="category" data_source="post_terms" template="Categories: {{var}}" joiner=", "]

  • Get featured image url: [vg_display_data key="_thumbnail_id" template="Image url: {{var}}" flag="file_url"]

  • Get featured image as tag.: [vg_display_data key="_thumbnail_id" template="Image: {{var}}" flag="image_tag"]

Advanced examples

  • Display the title for the post ID from the URL containing the parameter ?post_id=ANY_NUMBER: [vg_display_data object_id_type="query_string" object_id="post_id" key="post_title" data_source="post_data"]

  • Get email of the current user with phone number = 1234 (meta_key=phone AND meta_value=1234): [vg_display_data object_id_type="find" object_id="phone:1234" key="user_email" data_source="user_data"]

Parameters

  • object_id = Post ID. Leave empty to use the current post. Possible values: (empty), current, number, query string key if object_id_type=query_string, meta_key:meta_value if object_id_type=find

  • object_id_type = Leave empty if object_id is empty, or current, or is a number. Possible values: query_string, find

  • data_source = What database table to use to find the data. Default = post_meta. Possible values: post_data, post_meta, user_data, user_meta, post_terms.

  • key = Field key. It accepts one or multiple keys separated by commas. For example, to display full name = first_name,last_name. Required.

  • template = HTML fragment to use to display the field, if the field is empty the html is not displayed. Optional.

  • default = Default value to use if the field is empty. Optional.

  • joiner = If the field has multiple values, it will join the values with this string. Default ” ” (one space). Optional.

  • flag = Use only if the field contains a file ID to conver the ID to URL or image tag. Default values: file_url , image_tag. Optional.

  • wpautop = Whether to turn line breaks into paragraphs. Optional, only for advanced users.

  • do_shortcodes = Whether to parse shortcodes before displaying the field value. Optional, only for advanced users.

Installation

Automatic installation

Automatic installation is the easiest option as WordPress handles the file transfers itself and you don’t need to leave your web browser. To do an automatic install log in to your WordPress dashboard, navigate to the Plugins menu and click Add New.

In the search field type “Shortcode to display post and user data! and click Search Plugins. Once you’ve found our plugin you can install it by simply clicking “Install Now”.

Manual installation

The manual installation method involves downloading our plugin and uploading it to your webserver via your favourite FTP application. The WordPress codex contains instructions on how to do this here.

Frequently Asked Questions

No FAQ available

Review feed

Jose Vega
2/5/2018

Very useful

Very useful for displaying Advanced Custom Fields data in the frontend.
Md Jahidul Islam
9/1/2022

Fantastic! This plugin does what exactly I needed

I had a task to pass a custom field value to the setting field of a plugin. That plugin allows shortcode as a field value. I was thinking to write a custom code to get custom field value via shortcode. But what did I think, I searched on google, and got this cool thing.

Screenshots

No screenshots available

Changelog

1.3.0 = 2023-01-10
– Added settings page to whitelist every field that you want our shortcode to display in the front end. Your existing shortcodes will not work until you whitelist those field keys.
– The “sanitization” parameter has been removed. All the output is sanitized with wp_kses_post always.
– The “wp_filter” parameter has been removed. Now we have more specific parameters like wpautop=”yes” to turn line breaks into paragraphs, and do_shortcodes=”yes” to parse shortcodes.
– The “callable” parameter has been removed.

1.2.1 = 2023-04-20
– Only display fields of the current user

1.2.0
– Compatibility with wp 6.0
– Improve compatibility with ACF

1.1.3
– Compatibility with wp 5.8

1.1.2
– Fix. Array values are returned as “Array”

1.1.1
– Fixed fatal error

1.1.0
– Added flag term_name to display term ID as friendly name
– Added welcome page after install

1.0.1
– Fix. Allow to use object_id=current for users
– Small tweaks

1.0.0

  • Initial release.