I'm trying to incorporate some custom made php files in a WordPress site. In these files made links to other files.
<?
echo "<a href=show.php?x=" . $row['Name'] . ">" $row['Name'] . "</a><br> ";
?>
This works fine with an php-execute plugin for WordPress. The only thing is that the show.php opens without the WordPress theme and layout.
How can I make a link so that a new php file will open in the same (side)bar/frame with the same layout as the WordPress page?