php 将类添加到post_class函数wordpress(作为最后一个类)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 将类添加到post_class函数wordpress(作为最后一个类)相关的知识,希望对你有一定的参考价值。

<?php


add_filter( 'post_class', 'uikit_article_class' );

function my_article_class($classes) {
  if (!is_admin()) { 

	$classes[] = 'my-class';
	return $classes;
  }
}

以上是关于php 将类添加到post_class函数wordpress(作为最后一个类)的主要内容,如果未能解决你的问题,请参考以下文章

php 将类添加到WordPress摘录

php 将类添加到WordPress摘录

php 将类添加到WordPress摘录

php 将类添加到导航项(li)

如何使用 PHP 将类添加到“a href”元素?

PHP 将类添加到previous_posts_link()和next_posts_link()在WordPress中