1

我有一个安装了插件自定义字段版本 1.4.5 的 wordpress 电子商务网站...

我添加了一个名为 size 的新属性及其下拉菜单。它仅在我编辑产品时出现在管理页面中,但在 wpsc-single_product.php 中它不仅仅出现一行文本。如何让下拉菜单显示在 wpsc-single_product.php 上?

4

1 回答 1

0

您可以通过添加以下行手动将字段添加到您的主题:

<?php if( function_exists( 'wpsc_the_custom_fields' ) ) wpsc_the_custom_fields( 'slug=' ); ?>

确保将您的自定义字段 slug 附加到“slug =”

例如'slug=my-dropdown'

于 2013-01-22T21:39:40.723 回答