forked from LiveCarta/LiveCartaWP
22 lines
522 B
PHP
22 lines
522 B
PHP
<?php
|
|
get_header();
|
|
$posts = get_posts();
|
|
foreach ($posts as $post):
|
|
?>
|
|
<?=$post->ID ?>
|
|
<?=get_the_title($post); ?>
|
|
<?=get_post_meta($post->ID,'title2',true); ?>
|
|
<?=get_the_post_thumbnail_url(); ?>
|
|
<?=get_permalink(); ?>
|
|
<?php $categories = get_the_category();
|
|
foreach($categories as $category):?>
|
|
<?=$category->term_id; ?>
|
|
<?=$category->slug; ?>
|
|
<?php endforeach;?>
|
|
|
|
<br>
|
|
|
|
<?php
|
|
endforeach;
|
|
get_footer();
|