The non-profit organization I work for has a Wordpress site we would like to add another page to, and as a result need to create a template for the page. I have copied an existing page template started using it but there are some things I can't change - like the page specific banner.
The PHP for the page template and resulting html for the page seem to indicate that the text inside the parenthesis below is what is generating the URL for the banner.
Code:
url(<?php bloginfo('template_directory'); ?>/banners/<?php $key="page_banner"; echo get_post_meta(18, $key, true); ?>)
My question is this: Is there some place within Wordpress that I need to be changing something so that this points to the correct files etc, or should I be looking at altering the php (or css) files?