在get_template_part / wordpress

时间:2018-12-20 15:18:52

标签: wordpress

所以,我在这里有以下代码:

<?php

do_action( 'tha_content_while_before' );

$catquery = new WP_Query( 'cat=19&posts_per_page=3' );

while ( $catquery->have_posts() ) : $catquery->the_post();

    get_template_part(
        'template-parts/content/content',
        apply_filters( 'wmhook_modern_loop_content_type', get_post_format())
    );


endwhile;

do_action( 'tha_content_while_after' );

?>

,我需要在卡片上显示的标题后面添加一个超棒的字体图标。但是我不确定是否可能,我尝试了但没有任何效果。如果您知道某事,请告诉我。谢谢。

enter image description here

1 个答案:

答案 0 :(得分:0)

目录中有一个文件(template-parts / content / content.php),您需要打开它并编辑该文件。将会出现类似the_title()的情况,只需在其前面添加图标即可。如果需要帮助,请在此处粘贴文件content.php的内容!