wp-productzilla/wp-content/themes/blocksy/inc/integrations/bbpress.php
rizal.productzilla e38e8b231d templating
2024-04-01 16:08:46 +07:00

16 lines
252 B
PHP

<?php
add_filter('post_class', function ($classes) {
if (function_exists('is_bbpress') && (
get_post_type() === 'forum'
||
get_post_type() === 'topic'
||
get_post_type() === 'reply'
)) {
$classes[] = 'bbpress';
}
return $classes;
});