css 在属性详细信息上用文本标签替换图标
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 在属性详细信息上用文本标签替换图标相关的知识,希望对你有一定的参考价值。
<?php
/**
* Replace Icons with Text Labels on Property Details
*/
add_filter('wpcasa_property_details', 'custom_property_details');
function custom_property_details($property_details) {
// Get post ID from $post_id
if( empty( $post_id ) )
$post_id = get_the_ID();
// If still empty, return false
if( empty( $post_id ) )
return false;
// Get post custom data
$post_custom = get_post_custom( $post_id );
// Get standard details
$standard_details = wpcasa_standard_details();
// Create markup
$property_details = '<div class="property-details-overview clearfix">';
// Loop through required details
if( empty( $details_nr ) )
$details_nr = apply_filters( 'wpcasa_get_property_details_nr', 3 );
for( $i = 1; $i <= $details_nr; $i++ ) {
if( ! empty( $post_custom['_details_' . $i][0] ) ) {
// Get property detail
$property_detail = wpcasa_get_standard_detail( 'details_' . $i );
$property_details .= '<span class="property-details-' . $i . '" title="' . $property_detail['label'] . '">'.$property_detail['label'].' ';
$property_details .= $post_custom['_details_' . $i][0] . ' ';
$property_details .= wpcasa_get_measurement_units ( $standard_details['details_' . $i]['unit'] );
$property_details .= '</span><!-- .property-details-' . $i . ' -->' . "\n";
}
}
// Display formatted property price
$property_details .= '<span class="property-price">' . wpcasa_get_price( $post_id ) . '</span><!-- .property-price -->' . "\n";
// Close markup
$property_details .= '</div><!-- .property-details -->';
return $property_details;
}
.property-details-overview span {
padding: 0;
background: none;
}
以上是关于css 在属性详细信息上用文本标签替换图标的主要内容,如果未能解决你的问题,请参考以下文章
如何在 android 的谷歌地图 v2 上用我的图标替换蓝点?
求HTML中所有的标签以及标签解释,和,CSS样式表内容越详细越好,越容易理解越好
jQuery---jq操作标签文本(html(),text()),jq操作文档标签(插入,删除,修改),克隆,,jq操作属性,jq操作class属性,jq操作表单value,jq操作css,jq操作盒
在 CSS 属性中将图标字体设置为背景
IMG图像标签中可以设置的属性是啥 其定义和用法
求助大神,css中用字体标签画icon图标的问题