How can I add an custom field to a post or article via PHP file?

<?php 
 $my_box_office = get_post_meta( get_the_ID(), 'box-office', true);
    if( ! empty( $mtwo_box_office ) ) {
	echo '<p>Box Office: ' . $my_box_office . '</p>';
    }
?>