0

我正在编辑一个模板以尝试向我的页面添加一些条件逻辑。

页面模板显示与用户相关的主题。

我想添加一段代码,它将从我们正在查看的页面中获取用户名,然后将其用于我的条件语句的字符串中。

我整理的代码如下,但它破坏了我的页面,所以我做错了。

<?php global
// I query the ID and try and set that to the $userID - I think I am doing this  wrong, but when I echo the ID it gets the correct info.
$userID = get_queried_object()->ID; 
// This is the string I create using the userID which should be from the query above
$memberstatus = get_user_meta($userID,'member_status',true); 

 ?>

稍后我使用 IF 语句来使用 thsi 结果(我知道它有效),所以我不会发布它们。我的问题是试图让上述工作。

有什么帮助吗?

4

1 回答 1

0

该死,看起来当我从 php 中删除“全局”时它可以工作!我认为 global 必须在这个...啊,好吧

于 2012-10-01T16:57:50.560 回答