这是very 基本的花点时间学习PHP教程。真有趣!:)
无论如何…
<?php
$meta = get_post_meta( get_the_ID(), \'rw_agentPhone\', TRUE );
// get_post_meta() returns an empty string if it doesn’t find anything.
// We just test for this. If the string is not empty, we print it out.
\'\' != $meta and print "office: $meta";
?>