olderdais
Forum Replies Created
-
Hi again,
I didn´t get any response on this and is marked as resolved…Thanks.
Angel.Ok, I have posted my inquiry in “Amelia v2.4 change logs”.
Thanks,Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] Show new meta key dataThank you Vladimir.
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] Show new meta key dataOk, I´m trying to find a workaround by using a function.
This would work?
[su_user filter=”test_function_filter(test_data)”]
——FUNCTION :
function test_function_filter( $value) {
if ( ! function_exists( ‘wp_get_current_user’ ) )
return 0;
$user = wp_get_current_user();$key = “test_data”;
$single = false;$value = get_metadata($user->ID, $key, $single);
return $value;
}thanks.
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] Show new meta key dataHi, I have found that with this shortcode I can get the field I need :
[su_meta key=”test_data” user_id=”XXX”]
But how can I put, whitin that shotcode this one :
[su_user field=”ID”]
— tu get the user “test_data” info?