<?php // single-CustomTypeName.php ?>
Bedac na stronie single-CustomTypeName 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 -> obiekt $post
<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
$terms_list = get_the_terms($post->ID, 'Kraje'); //tablica z wszystkimi obiektami takosonomi o nawie 'Kraje'
foreach ($terms_list as $term){
$link = get_term_link($term->slug,'Kraje');
echo '<a href="'. $link . '">' . $term->name . '</a>' . ' ';
}
?>
<span>Tagi: </span>
<?php
$terms_list = get_the_terms($post->ID, 'MojeTagi'); //tablica z wszystkimi obiektami takosonomi o nawie 'MojeTagi'
foreach ($terms_list as $term){
$link = get_term_link($term->slug,'TagiMOJE');
echo '<a href="'. $link . '">' . $term->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.