admin管理员组文章数量:1415067
I am going absolutely insane with this one, I cannot for the life of me figure out why I am not receiving the string content.
var_dump is outputting the correct result perfectly, yet the content for $havemeta is empty. Really need some input.
add_action( 'woocommerce_before_main_content', 'shopping_location_text', 10 );
global $current_user;
get_currentuserinfo(); // wordpress global variable to fetch logged in user info
$userID = $current_user->ID; // logged in user's ID
$havemeta = get_user_meta($userID, 'location_select', true); // stores the value of logged in user's meta data for 'location_select'.
var_dump($havemeta);
function shopping_location_text() {
if( is_shop() ) {
print '<p class="shopping-location-text">YOUR ARE CURRENTLY SHOPPING IN <span style="FONT-WEIGHT: 700;COLOR: #fa4516;">' . $havemeta . '</span></p>';
}
}
I am going absolutely insane with this one, I cannot for the life of me figure out why I am not receiving the string content.
var_dump is outputting the correct result perfectly, yet the content for $havemeta is empty. Really need some input.
add_action( 'woocommerce_before_main_content', 'shopping_location_text', 10 );
global $current_user;
get_currentuserinfo(); // wordpress global variable to fetch logged in user info
$userID = $current_user->ID; // logged in user's ID
$havemeta = get_user_meta($userID, 'location_select', true); // stores the value of logged in user's meta data for 'location_select'.
var_dump($havemeta);
function shopping_location_text() {
if( is_shop() ) {
print '<p class="shopping-location-text">YOUR ARE CURRENTLY SHOPPING IN <span style="FONT-WEIGHT: 700;COLOR: #fa4516;">' . $havemeta . '</span></p>';
}
}
Share
Improve this question
asked Aug 20, 2019 at 4:05
BruceBrain21BruceBrain21
152 bronze badges
2
- Does the "YOUR ARE CURRENTLY SHOPPING" text display? – Jacob Peattie Commented Aug 20, 2019 at 4:06
- Yes perfectly! That is what is driving me insane. – BruceBrain21 Commented Aug 20, 2019 at 4:09
1 Answer
Reset to default 1The $havemeta
variable isn't defined inside your shopping_location_text()
function, so it isn't available for use there.
For a quick fix (or for testing/toying) you can move your code inside the function, like this:
add_action( 'woocommerce_before_main_content', 'shopping_location_text', 10 );
function shopping_location_text() {
global $current_user;
get_currentuserinfo(); // wordpress global variable to fetch logged in user info
$userID = $current_user->ID; // logged in user's ID
$havemeta = get_user_meta($userID, 'location_select', true); // stores the value of logged in user's meta data for 'location_select'.
//var_dump($havemeta);
if( is_shop() ) {
print '<p class="shopping-location-text">YOUR ARE CURRENTLY SHOPPING IN <span style="FONT-WEIGHT: 700;COLOR: #fa4516;">' . $havemeta . '</span></p>';
}
}
本文标签: phpUser Meta Value not echoing despite VarDump Showing correct string
版权声明:本文标题:php - User Meta Value not echoing despite Var_Dump Showing correct string 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745231723a2648852.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论