样式化高级自定义字段

时间:2017-04-28 00:39:33

标签: php css wordpress advanced-custom-fields custom-fields

我正在使用“Enfold”主题在Wordpress网站上工作,并将主题的内置“投资组合”选项定制为House& Land Package不动产如page

我正在使用高级自定义字段,让非开发人员可以轻松添加新套餐,包括价格和床位/浴室/车位空间等信息。

从中获取ACF的PHP代码部分标记为:

$output .= get_post_meta( $entry->ID, "package_price", true );
$output .= !empty($title) || !empty($excerpt) ? "</div>" : '';
$output .= get_post_meta( $entry->ID, "bed", true );
$output .= get_post_meta( $entry->ID, "bath", true );
$output .= get_post_meta( $entry->ID, "car", true );

我希望能够使用CSS设置样式,但是无法弄清楚如何使用这个特定的代码。有人可以帮忙吗?

0 个答案:

没有答案