• Resolved jacek_sliwek

    (@jacek_sliwek)


    I removed “This entry was posted in”, but I don’t know how to remove category too. I would like to have a separator between posts.

    pleas help

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author nobita

    (@nobita)

    Hi jacek_sliwek

    Thank you for create a new post.

    Are you remove category links all?

    Try below.

    Add functions.php first line (<?php before )

    add_filter( 'the_category', 'my_remove_category' ,10, 3);
    
    function my_remove_category( $categories, $separator, $parents ) {
    
    	if ( $separator == ' ' ) {
    
    	return;
    	}
    	return $categories;
    }
    Thread Starter jacek_sliwek

    (@jacek_sliwek)

    I do it in theme child and I don’t have anything.
    White site, and now I can’t chance theme now.

    HELP

    Thread Starter jacek_sliwek

    (@jacek_sliwek)

    everything is ok, below is printscreen and it show what I want remove.

    http://trebor-tim.com.pl/post.jpg

    Thread Starter jacek_sliwek

    (@jacek_sliwek)

    only words “bez kategorii”, but I want to have a frame or some separator between posts.

    Thread Starter jacek_sliwek

    (@jacek_sliwek)

    I’ve included the code below, meybey it help someone

    .entry-meta a[href$='cat=1']{
    	display:none;
    }
Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘separator between posts’ is closed to new replies.