예제 #1
0
function hmp_additional_information_meta_box($post)
{
    ?>
	<p><label>URL</label></p>
	<input id="website_url" type="text" name="url" value="<?php 
    echo hmp_get_url($post);
    ?>
" />
	<p><label>Related Work (post ID)</label></p>
	<input type="text" name="related_work" value="<?php 
    echo implode(', ', (array) get_post_meta($post->ID, '_related_work', true));
    ?>
" />
	<?php 
}
function jhp_get_url($post = null)
{
    _deprecated_function(__FUNCTION__, '0.9.8', 'hmp_get_url()');
    return hmp_get_url($post);
}