php WordPress |有自定义类的文章

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WordPress |有自定义类的文章相关的知识,希望对你有一定的参考价值。

<?php 
    
    // Get all entries from the sector list
    $sectors = get_field('sector_select'); $sectorList = implode(' ', $sectors); $sectorList = strtolower($sectorList);

    $classes = array (
        'all',
        $sectorList
    ); 

?>
 
<article <?php post_class($classes); ?>>
  <header>
    <h2 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
    <?php get_template_part('templates/entry-meta'); ?>
  </header>
  <div class="entry-summary">
    <?php the_excerpt(); ?>
  </div>
</article>

以上是关于php WordPress |有自定义类的文章的主要内容,如果未能解决你的问题,请参考以下文章

wordpress多作者显示问题

如何调用属于 PHP 类的自定义函数(wordpress do_action 样式)?

Wordpress 模板 - “可捕获的致命错误:__PHP_Incomplete_Class 类的对象无法转换为字符串”

在 Users.php 列中显示用户元数据

wordpress博客文章作者信息页面显示不了

wordpress自定义标签云与随机获取标签的方法详解_php技巧 - PHP