Info Single Post

<?php // single-post.php ?> Bedac na stronie single-post mamy dostep do obiektu $post, z ktorego mozemy wyciagnac wszystkie informacje dotyczace postow, nie uzywajac przy tym petli. <?php the_post(); ?> <h2><?php the_title(); ?></h2> // tytul wpisu <p><?php the_content(); ?></p> // zawartosc wpisu <span>Data publikacji: <?php the_date(); ?> o <?php the_time(); ?></span> // data / godzina wpisu <span>Autor publikacji: <?php the_author(); ?></span> // autor wpisu <span>Format postu: <?php echo get_post_format( $post->ID ); ?></span> // format wpisu <span>Liczba ludnosci: <?php echo get_post_meta($post->ID , 'Ludnosc', true); ?></span> // custom fields <?php if ( has_post_thumbnail() ) : ?> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"> //link wpisu <?php the_post_thumbnail(); ?> // miniaturka wpisu </a> <?php endif; ?> <span>Kategorie: </span> <?php $categories = get_the_category(); // tablica wszystkich kategorii wpisu foreach ($categories as $category){ echo '<a href="'. get_category_link($category->term_id) . '">' . $category->name . '</a>' . ' '; } ?> <span>Tagi: </span> <?php $tags = get_the_tags(); // tablica wszystkich tagow wpisu foreach ($tags as $tag){ echo '<a href="'. get_category_link($tag->term_id) . '">' . $tag->name . '</a>' . ' '; } ?>

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.