add campaign tracking plugin
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
<?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>
|
||||
Reference in New Issue
Block a user