我想在后端添加日期选择器自定义归档单个产品,并且还保存在数据库中,所以请尽快给我建议。
答案 0 :(得分:0)
您可以使用此插件在产品部分
中创建datepicker自定义字段https://wordpress.org/plugins/woocommerce-custom-product-data-fields/
如果您想显示没有插件的其他自定义字段,请使用此文档
http://www.remicorson.com/mastering-woocommerce-products-custom-fields/
Hello Vishit Following code will display content of post meta in template file or anywhere where you want to display For Example :
<?php if ($company_v=get_post_meta( get_the_ID(), 'company_v', true ) ) : ?>
<i class="fa fa-graduation-cap"></i><span>
<?php if($company_v) { echo $company_v; } ?></span>
<?php endif; ?>