将$ variable打印到HTML表中

时间:2019-02-23 09:46:46

标签: php

我不了解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技能。

编辑:

我在data-label中看到了PHP代码: enter image description here

对于Google来说,数据标签具有与<TH>相同的标题是很重要的,我需要看到它具有良好的数据标签标题:

enter image description here

0 个答案:

没有答案