Vernetzt in allen Kanälen

<?php

get_header(); ?>

<?php
// Query the original page by ID
$page_query = new WP_Query( 'page_id=http://guldenbachtal.digital/onlineprasenz' ); 
if ( $page_query->have_posts() ) :
    while ( $page_query->have_posts() ) :
        $page_query->the_post();
        // Output the content of the original page
        the_content();
    endwhile;
endif;
?>

<?php get_footer(); ?>

<?php get_header(); ?> <?php // Query the original page by ID $page_query = new WP_Query( ‚page_id=http://guldenbachtal.digital/onlineprasenz‘ ); if ( $page_query->have_posts() ) : while ( $page_query->have_posts() ) : $page_query->the_post(); // Output the content of the original page the_content(); endwhile; endif; ?> <?php get_footer(); ?>