php include on Page template, how to add code/info after?
-
I am using WP to create a web site for a group of sailors here in Ireland. Version 2.0.22, installed easily, and I have reduced and modified the Kubrick stylesheet to suit our needs. https://www.sail.ie/sb is the temporary home before it gotes live on another server.
I have created two Pages with templates using “php include” to insert previously prepared html pages. See one such page here.
I do not have enough CSS skill to render the html as a Page without the “include.”
The Page resolves properly, but I would like to be able to use the Dashboard > Manage Pages > Edit Screen to add additional data beneath the “included” html. Alas, I cannot.
Does anyone have a method of adding text and images beneath the “php include?”
The template is:
<?php
/*
Template Name: boatinfo
*/
?>
<?php get_header(); ?>
<div id=”content” class=”box”>
<?php include (‘b_info/boatinfo.html’); ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>Very many thanks for your help,
Bob, in Dublin
- The topic ‘php include on Page template, how to add code/info after?’ is closed to new replies.