• Hi, i need your help with inserting your code into another one through a function/filter

    this is the code so far, it displays fine but it cannot retrieve the color set in category options

    // Category option checked
            if ($instance['stats_tag']['category']) {
    						$rl_category_color = rl_color($category->cat_ID);
                $post_cat = get_the_category($popular->id);
                $post_cat = (isset($post_cat[0]))
    
    							? '<a class="reddish" href="'.get_category_link($post_cat[0]->term_id).'"style="background-color:'.$rl_category_color.';">'.$post_cat[0]->cat_name.'</a>'
                  : '';
    
                if ($post_cat != '') {
                    $stats[] = '<span class="wpp-category">' . sprintf(__('under %s', 'wordpress-popular-posts'), $post_cat) . '</span>';
                }
    
            }

    Obviously it missing something or perhaps has some incorrect code, would you help figure it out?

    My web page that I’m working on is http://www.creativitynest.com/home

    https://wordpress.org/plugins/category-color/

  • The topic ‘Adding custom code’ is closed to new replies.