我不了解PHP,但到目前为止我已经被打中了,我想自己介绍一下。如下所示,我从数据库中检索数据。下面是它要讨论的部分。
<div class="gp-hub-block gp-hub-block-three">
<?php if ( ghostpool_option( 'hub_fields' ) ) {
// Support for foreign characters
$char_table = array();
if ( function_exists( 'ghostpool_hub_field_characters' ) ) {
$char_table = ghostpool_hub_field_characters();
}
foreach( ghostpool_option( 'hub_fields' ) as $gp_hub_field ) {
$gp_hub_field_slug = strtr( $gp_hub_field, $char_table );
if ( function_exists( 'iconv' ) ) {
$gp_hub_field_slug = iconv( 'UTF-8', 'UTF-8//TRANSLIT//IGNORE', $gp_hub_field_slug );
}
$gp_hub_field_slug = sanitize_title( $gp_hub_field_slug );
$gp_hub_field_slug = substr( $gp_hub_field_slug, 0, 32 );
$gp_term_list = get_the_term_list( $post_id, $gp_hub_field_slug, '<table class="casino-info"><tbody><span class="aaa"><tr class="casino-info-titel"><th scope="row">' . __($gp_hub_field,'JDcustomnew') . ':</th><td scope="row" data-label="'<?php echo ($gp_hub_field ); ?>'">', ', ', '</td></tbody></table>' );
if ( ! $gp_term_list OR is_wp_error( $gp_term_list ) ) {
continue;
}
if ( ghostpool_option( 'hub_field_links' ) == 'disabled' ) {
$gp_term_list = preg_replace( '/<\/?a[^>]*>/', '', $gp_term_list );
}
echo wp_kses_post( $gp_term_list );
}
} ?>
</div>
</div>
您将在下面看到它的确切位置
$gp_term_list = get_the_term_list( $post_id, $gp_hub_field_slug, '<table class="casino-info"><tbody><span class="aaa"><tr class="casino-info-titel"><th scope="row">' . __($gp_hub_field,'JDcustomnew') . ':</th><td scope="row" data-label="'<?php echo ($gp_hub_field ); ?>'">', ', ', '</td></tbody></table>' );
我想要做的是将$ gp_hub_field返回到表的datalabel。不幸的是,我不能这样做。有人可以帮助我吗?
请不要怪我的PHP技能。
编辑:
对于Google来说,数据标签具有与<TH>
相同的标题是很重要的,我需要看到它具有良好的数据标签标题: