xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Base: /home/ayyokffr/monsterbeatsbydrepaschere.com
Current: /home/ayyokffr/monsterbeatsbydrepaschere.com/wp-content/themes/magazinex-lite/partials/entry
Name
Type
Size
Action
..
dir
-
category.php
file
744
edit
content.php
file
353
edit
featured.php
file
813
edit
meta.php
file
431
edit
title.php
file
329
edit
Quick Jump (auto-detected)
/home/ayyokffr/monsterbeatsbydrepaschere.com
Reset Base
Overwrite
Upload
Editing: wp-content/themes/magazinex-lite/partials/entry/category.php
<?php /** * Displays the entry category(ies) with custom meta of colors */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) { exit; } // Show only when needed if ( 'post' != get_post_type() || is_category() ) { return; } // Get category if ( get_theme_mod( 'entry_category_first_only', false ) != true ) { $category = magazinex_get_post_terms( 'category', true, 'cat-badge' ); } else { $category = magazinex_get_post_terms( 'category', false, 'cat-badge' ); } // Display category if ( $category ) : ?> <div class="entry-cat clearfix"><?php if ( !empty( $color ) ) { echo 'style="background-color:' . $color . ';"'; } ?> <?php echo wp_kses( $category, 'post' ); ?> </div> <?php endif; ?>
Save