Files
LiveCartaWP/htdocs/wp-content/themes/lawcarta/single.php
2020-08-13 15:58:00 +03:00

21 lines
523 B
PHP

<?php
get_header();
$post = get_post();
?>
<?=$post->ID ?>
<?=get_the_title($post); ?>
<?=get_post_meta($post->ID,'title2',true); ?>
<?=get_the_post_thumbnail_url(); ?>
<?=get_permalink(); ?>
<?=get_the_content(null,false, $post); ?>
<?php $categories = get_the_category();
foreach($categories as $category):?>
<?=$category->term_id; ?>
<?=$category->slug; ?>
<?php endforeach;?>
<br>
<?php
get_footer();