Skopiuj sobie „Zaszufladkowano” a następnie przejdź do Kokpit/Wygląd/Edytor wybierz z prawej index.php i zobacz czy nie ma tam tego co skopiowałeś (wciskasz ctrl + F = szukajka fraz).
Jak znajdziesz i skasujesz to nie będzie. Jak nie ma w tym pliku to będzie w innym. Prawdopodobnie będzie w 2 plikach.
Nie znalazłem w tych plikach tej frazy. W tych plikach wogóle tam nic nie ma po polsku napisane 🙂
Może ktoś inny wie jak to usunąć?
Albo ukryć w css .entry-utility-prep-cat-links, albo całkowicie usunąć z szablonu – plik content.php linia bodajże nr. 55
<?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-cat-links', $categories_list );
$show_sep = true; ?>
zmieniasz na:
<?php printf( __( '%2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-cat-links', $categories_list );
$show_sep = true; ?>
Dzięki wielkie !
Podziałało, ale usunęło samo „Zaszufladkowano do”.
Ja chciałem usunąć całość razem z kategorią i „Napisz odpowiedź” więc wywaliłem to co było oryginalanie i to co mi podałeś oraz musiałem jeszcze niżej parę linijek usunąć dotyczących dodawania komentarzy.
Teraz nie ma nic, tak jak chciałem 🙂
Dzięki jeszcze raz i Pozdrawiam, mam następny problem, ale zrobię nowy temat 🙂
Witam ponownie 🙂
Zauważyłem, że gdy otworzę jakiś wpis, to pod nim pisze coś takiego:
Kategorie: xxxxx. Tagi: xx,xxx,xxx. Autor: admin. Dodaj zakładkę do bezpośredniego odnośnika.
Który plik mam edytować aby to usunąć?
content-single.php, kasujesz/wykomentiowujesz
printf(
$utility_text,
$categories_list,
$tag_list,
esc_url( get_permalink() ),
the_title_attribute( 'echo=0' ),
get_the_author(),
esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) )
);
albo nawet całe
<?php
/* translators: used between list items, there is a space after the comma */
$categories_list = get_the_category_list( __( ', ', 'twentyeleven' ) );
/* translators: used between list items, there is a space after the comma */
$tag_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) );
if ( '' != $tag_list ) {
$utility_text = __( 'This entry was posted in %1$s and tagged %2$s by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyeleven' );
} elseif ( '' != $categories_list ) {
$utility_text = __( 'This entry was posted in %1$s by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyeleven' );
} else {
$utility_text = __( 'This entry was posted by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyeleven' );
}
printf(
$utility_text,
$categories_list,
$tag_list,
esc_url( get_permalink() ),
the_title_attribute( 'echo=0' ),
get_the_author(),
esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) )
);
?>
Dzięki wielkie, podziałało 🙂