Tessien

Přehled odpovědí

Aktuálně jsou na stránce zobrazeny 2 příspěvky - 1. až 2. (z celkem 2)
  • Autor
    Příspěvky
  • odpověď na téma: Problém se zobrazením úvodní stránky #7950

    Tessien
    Participant

    Aha, tak to mě nenapadlo, ale zaráží mě právě, že to dělá tyto hlouposti pouze v Internet Exploreru, proto jsem na to ani nepřišel hned…

    odpověď na téma: Problém se zobrazením úvodní stránky #7948

    Tessien
    Participant

    Zdravím, předem mnohokrát děkuju za ochotu pomoci :) koukal jsem na ten soubor page.php, ale jak říkám, hraju si s tím třetí den tak se v tom ještě příliš neorientuji… soubor page.php vypada takhle:

    <?php

    /**

    * The template for displaying all pages.

    *

    * This is the template that displays all pages by default.

    * Please note that this is the WordPress construct of pages

    * and that other ‘pages’ on your WordPress site will use a

    * different template.

    *

    * @package WordPress

    * @subpackage Twenty_Ten

    * @since Twenty Ten 1.0

    */

    get_header(); ?>

    <div id=”container”>

    <div id=”content” role=”main”>

    <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>

    <div id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>

    <?php if ( is_front_page() ) { ?>

    <h2 class=”entry-title”><?php the_title(); ?></h2>

    <?php } else { ?>

    <h1 class=”entry-title”><?php the_title(); ?></h1>

    <?php } ?>

    <div class=”entry-content”>

    <?php the_content(); ?>

    <?php wp_link_pages( array( ‘before’ => ‘<div class=”page-link”>’ . __( ‘Pages:’, ‘twentyten’ ), ‘after’ => ‘</div>’ ) ); ?>

    <?php edit_post_link( __( ‘Edit’, ‘twentyten’ ), ‘<span class=”edit-link”>’, ‘</span>’ ); ?>

    </div><!– .entry-content –>

    </div><!– #post-## –>

    <?php comments_template( ”, true ); ?>

    <?php endwhile; ?>

    </div><!– #content –>

    </div><!– #container –>

    <?php get_sidebar(); ?>

    <?php get_footer(); ?>


    a soubor index.php vypada takhle:

    <?php

    /**

    * The main template file.

    *

    * This is the most generic template file in a WordPress theme

    * and one of the two required files for a theme (the other being style.css).

    * It is used to display a page when nothing more specific matches a query.

    * E.g., it puts together the home page when no home.php file exists.

    * Learn more: http://codex.wordpress.org/Template_Hierarchy

    *

    * @package WordPress

    * @subpackage Twenty_Ten

    * @since Twenty Ten 1.0

    */

    get_header(); ?>

    <div id=”container”>

    <div id=”content” role=”main”>

    <?php

    /* Run the loop to output the posts.

    * If you want to overload this in a child theme then include a file

    * called loop-index.php and that will be used instead.

    */

    get_template_part( ‘loop’, ‘index’ );

    ?>

    </div><!– #content –>

    </div><!– #container –>

    <?php get_sidebar(); ?>

    <?php get_footer(); ?>


    Toto jsou mé první stránky na WP, takže většinou zkouším metodou pokus-omyl :) ale zatím právě všechno šlo no…

Aktuálně jsou na stránce zobrazeny 2 příspěvky - 1. až 2. (z celkem 2)

WordPress – novinky, návody a zajímavosti