Special field shortcode
-
I have created shortcode to display date on the form.
But when i submit the form “date” is not added to db table ‘wp-postmeta’.
Can anyone please shed light on this why it is not get added, as its really urgent.
Also if there is a way(code example) i can retrive and display the date using shortcode.
Any help appreciated. I have added code below along with screenshotThank you in advance
Code:
function shortcode_datepicker()
{
?>
<script>
$(function() {
$( “#datepicker1” ).datepicker({
});
});
</script>
<input type = “text” id = “datepicker1″ name=”datepicker1”><?php
}
add_shortcode( ‘custom_datepicker’, ‘shortcode_datepicker’ );
- The topic ‘Special field shortcode’ is closed to new replies.