18 lines
468 B
PHP
18 lines
468 B
PHP
<?php
|
|
|
|
?>
|
|
<p><b>Campaign details info</b></p>
|
|
<table>
|
|
<?php
|
|
foreach($this->_meta as $meta):
|
|
$value=get_post_meta($post->ID, $meta['name'], true);
|
|
$field=$meta['name'];
|
|
$title=$meta['title'];
|
|
if($meta['type']=='input-text') :
|
|
include(sprintf("%s/metabox/input-text.php", dirname(__FILE__))) ;
|
|
elseif($meta['type']=='input-date') :
|
|
include(sprintf("%s/metabox/input-date.php", dirname(__FILE__))) ;
|
|
endif ;
|
|
endforeach;
|
|
?>
|
|
</table>
|