function custom_field() { global $post; $url = get_post_meta( $post->ID, 'hero_style', true ); if ( ! empty( $url ) ) { echo 'My Button'; } } add_filter( 'field', 'custom_field' );