A tetszik gomb “Facebook Like Button by kms” bővítménnyel a lapozás pedig WP Paging 1.0 bővítménnyel van jelen a képekkel foglalkozó, nemrég elkészült blogomon. A főoldalon minden klappol, viszont ha valaki kategóriák szerint szeretne böngészni, ott hiányzik ez a 2 lehetőség.
Hogyan tudnám orvosolni ezt a problémát ?
(Programozási nyelven annyit beszélek, mint szanszkritül, tehát kb semmit… Szóval ha valamit be kell illesztenem, akkor megkérem a kedves segítőt azt is írja melyik fájlba és nagyjából hova Előre is köszönöm! )
Melyik sablont használod?
Az archive.php -be is ott kell lennie a kódnak, ha a kereséseknél is szeretnéd, akkor a search.php-be is.
Alap sablonnal megy?
Köszönöm szépen a választ, a lapozós problémát így már sikerült megoldanom
Maradt a Tetszik gomb. Ha esetleg nem pluginnel, hanem kóddal lenne beszúrva, akkor lehet hogy megjelenne a kategória szerinti listázásnál is ? Vagy pedig csak az archive.php-be elég lenne beszúrni a kódot ?
Ahogy fentebb említettem szanszkrit programozási nyelvismeretem miatt ismét megkérném az esetleges válaszadót, hogy pontosan írja le mit és hova illesszek be.
Beillesztem az archive.php-t, hátha így könyebb megtalálni mi a hiba.
<?php
/**
*
- archive.php
*
- The archive template. Used when a category, author, or date is queried.
- Note that this template will be overridden by category.php, author.php, and date.php for their respective query types.
*
- More detailed information about template’s hierarchy: http://codex.wordpress.org/Template_Hierarchy
*
*/
get_header(); ?>
<?php
if (have_posts()){
global $posts;
$post = $posts[0];
ob_start();
if (is_category()) {
echo '
'. single_cat_title( '', false ) . '
';echo category_description();
} elseif( is_tag() ) {
echo '
'. single_tag_title('', false) . '
';} elseif( is_day() ) {
echo '
'. sprintf(__('Daily Archives: %s', THEME_NS), get_the_date()) . '
';} elseif( is_month() ) {
echo '
'. sprintf(__('Monthly Archives: %s', THEME_NS), get_the_date('F Y')) . '
';} elseif( is_year() ) {
echo '
'. sprintf(__('Yearly Archives: %s', THEME_NS), get_the_date('Y')) . '
';} elseif( is_author() ) {
the_post();
echo theme_get_avatar(array('id' => get_the_author_meta('user_email')));
echo '
'. get_the_author() . '
';$desc = get_the_author_meta('description');
if ($desc) echo '
' . $desc . '
';rewind_posts();
} elseif( isset($_GET['paged']) && !empty($_GET['paged']) ) {
echo '
'. __('Blog Archives', THEME_NS) . '
';}
theme_post_wrapper(array('content' => ob_get_clean(), 'class' => 'breadcrumbs'));
/* Display navigation to next/previous pages when applicable */
if (theme_get_option('theme_top_posts_navigation')) {
theme_page_navigation();
}
/* Start the Loop */
while (have_posts()) {
the_post();
get_template_part('content', get_post_format());
}
/* Display navigation to next/previous pages when applicable */
if (theme_get_option('theme_bottom_posts_navigation')) {
theme_page_navigation();
}
} else {
theme_404_content();
}
?>
<?php get_footer();
<?php
/**
*
* archive.php
*
* The archive template. Used when a category, author, or date is queried.
* Note that this template will be overridden by category.php, author.php, and date.php for their respective query types.
*
* More detailed information about template’s hierarchy: http://codex.wordpress.org/Template_Hierarchy
*
*/
get_header(); ?>
<?php
if (have_posts()){
global $posts;
$post = $posts[0];
ob_start();
if (is_category()) {
echo ''. single_cat_title( '', false ) . '
';
echo category_description();
} elseif( is_tag() ) {
echo ''. single_tag_title('', false) . '
';
} elseif( is_day() ) {
echo ''. sprintf(__('Daily Archives: %s', THEME_NS), get_the_date()) . '
';
} elseif( is_month() ) {
echo ''. sprintf(__('Monthly Archives: %s', THEME_NS), get_the_date('F Y')) . '
';
} elseif( is_year() ) {
echo ''. sprintf(__('Yearly Archives: %s', THEME_NS), get_the_date('Y')) . '
';
} elseif( is_author() ) {
the_post();
echo theme_get_avatar(array('id' => get_the_author_meta('user_email')));
echo ''. get_the_author() . '
';
$desc = get_the_author_meta('description');
if ($desc) echo '' . $desc . '';
rewind_posts();
} elseif( isset($_GET['paged']) && !empty($_GET['paged']) ) {
echo ''. __('Blog Archives', THEME_NS) . '
';
}
theme_post_wrapper(array('content' => ob_get_clean(), 'class' => 'breadcrumbs'));
/* Display navigation to next/previous pages when applicable */
if (theme_get_option('theme_top_posts_navigation')) {
theme_page_navigation();
}
/* Start the Loop */
while (have_posts()) {
the_post();
get_template_part('content', get_post_format());
}
/* Display navigation to next/previous pages when applicable */
if (theme_get_option('theme_bottom_posts_navigation')) {
theme_page_navigation();
}
} else {
theme_404_content();
}
?>
<?php get_footer();