Wordpress函数 - 获取没有回声的值

时间:2011-05-17 10:38:50

标签: php wordpress

如何以编程方式使用bult-in Wordpress功能的数据。

E.g。我想使用

的数据
the_author_meta('login_name'); 

在php函数中。问题:默认情况下,函数回显。为了在函数中使用实际值,我可以考虑使用输出缓冲区,如...

ob_start();
the_author_meta('login_name');  
$contents = ob_get_contents();
ob_end_clean();

但我希望有一个更好(不那么臃肿)的解决方案。

知道如何将echo值作为简单的返回值吗?

1 个答案:

答案 0 :(得分:2)

使用get_the_author_meta()返回值。

注意:所有wordpress元方法(the_post,the_author,the_page等)都支持get_前缀