如何以编程方式使用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值作为简单的返回值吗?
答案 0 :(得分:2)
使用get_the_author_meta()
返回值。
注意:所有wordpress元方法(the_post,the_author,the_page等)都支持get_
前缀