2022..0716.
Include page példa kód
Hogyan illesszünk be egy php fájlt vagy oldal tartalmát egy másik tartalomba?.
[codeblock]<?php include 'slider.php';?>
// or by id
<?php $temp = $wp_query; $wp_query= null; $wp_query = new WP_Query();$wp_query->query('post_type=page&page_id=13');?>
<?php while ($wp_query->have_posts()) : $wp_query->the_post(); ?><?php the_content('more') ?>
<?php endwhile; ?>
<?php $wp_query = null; $wp_query = $temp;?>
[/codeblock]