27 lines
625 B
HTML
27 lines
625 B
HTML
<div id="model_plugin_shortcode">
|
|
<ol>
|
|
<p>list of post meta :</p>
|
|
<?php
|
|
foreach($post_meta as $meta_key => $meta_value) {
|
|
include($plgn_dir."html/templates/print_meta.html");
|
|
}
|
|
?>
|
|
</ol>
|
|
<ol>
|
|
<p>list of user meta :</p>
|
|
<?php
|
|
foreach($user_meta as $meta_key => $meta_value) {
|
|
include($plgn_dir."html/templates/print_meta.html");
|
|
}
|
|
?>
|
|
</ol>
|
|
|
|
<p>i am a new p</p>
|
|
<p class="first_el_to_change">to change</p>
|
|
<button id='test_ajax_1' name="ajax_button_1" value="2024">2024</button>
|
|
<?php
|
|
foreach($names as $name) {
|
|
include($plgn_dir."html/templates/example_presentation.html");
|
|
}
|
|
?>
|