Zadejte hledaný výraz...

Jak na to?

lamps08
verified
rating uzivatele
(4 hodnocení)
1. 10. 2013 17:35:07
Zdravím,
potřeboval bych poradit s wordpressem.
Na hlavní stránce webu http://modniinspirace.cz/ nechci dole tolik příspěvků, ať to nevypadá jako katalog.
Chtěl bych to zredukovat jen třeba na 6 příspěvků pěkně vedle sebe 3 a pod sebou 3, ale nevím jak na to.
Díky moc
1. 10. 2013 17:35:07
https://webtrh.cz/diskuse/jak-na-to-6#reply951094
Zkus v administraci: Nastavení -> Zobrazování -> Na webu zobrazit maximálně "6" příspěvků
1. 10. 2013 17:41:58
https://webtrh.cz/diskuse/jak-na-to-6#reply951093
lamps08
verified
rating uzivatele
(4 hodnocení)
1. 10. 2013 17:54:38
Díky moc, takhle to přesně je, jak si to představuji.
Jen otázka, teď třeba tady http://modniinspirace.cz/category/hodinky/panske-hodinky mám jen 6 produktů a pro větší výběr se musí kliknout.
Nedá se nějak udělat, aby na hlavní stránce bylo 6 příspěvků a v kategoriích kolik chci?
Díky
1. 10. 2013 17:54:38
https://webtrh.cz/diskuse/jak-na-to-6#reply951092
tom32
verified
rating uzivatele
(6 hodnocení)
2. 10. 2013 01:59:59
da sa nastavit iny pocet na hlavnej stranke ako vsade inde, napriklad na hl. stranke bude 6 a vsade inde 10
da sa nastavit presny pocet pre kazdu kategoriu
navodov na nete je dost, jeden z nich:
There is no option to change the number of posts per page, archive, tag or category from the admin but you can use query_posts() posts_per_page to set the number. for example in your theme's index.php file or if you are using a static page as your home_page the page.php file add this snippet of code above the loop
if(is_home() || is_front_page()){
global $query_string;
parse_str( $query_string, $args );
$args = 2;
query_posts($args);
}
what it does is check to see if you are on the home page or front page and if you are then it changes the number of posts to show.
another example is to show different number of posts for different categories:
global $query_string;
parse_str( $query_string, $args );
if(is_category('cats')){
$args = 7;
query_posts($args);
}elseif(is_category('dogs')){
$args = 4;
query_posts($args);
}else{
$args = 10;
query_posts($args);
}
here we use the conditional tag is_category() to check which category we are in based on that we set the number of posts to display. For cats we set 7, for dogs we set 4 and if its just random category we display 10.
Samozrejme ide to aj cez pluginy, napr: http://wordpress.org/plugins/custom-post-limits/
2. 10. 2013 01:59:59
https://webtrh.cz/diskuse/jak-na-to-6#reply951091
lamps08
verified
rating uzivatele
(4 hodnocení)
2. 10. 2013 10:32:17
Paráda, přesně toto jsem potřeboval, díky:)
2. 10. 2013 10:32:17
https://webtrh.cz/diskuse/jak-na-to-6#reply951090
Pro odpověď se přihlašte.
Přihlásit