我希望使用一个只在特定自定义字段可用时运行的函数。
类似于:
if (custom_field_x_exists("name_of_the_custom_field")) :
<Do some things>;
endif;
怎么做呢?
最合适的回答,由SO网友:Mamaduka 整理而成
我想这应该会有帮助
if ( get_post_meta( $post->ID, \'name_of_the_custom_field\', true ) ) :
// Do something
endif;