di-rodge
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Fixing WordPress
In reply to: Template tags don’t show in loaded phptheyre .php pages that exist, only dynamic content is the Posts being loaded into that sidebar.
Can view the actual page with no css styling at:
http://www.copelandentertainment.com/stage/_pages/home.phpYou can see right under the Search field is the three posts being displayed properly.
Forum: Fixing WordPress
In reply to: Template tags don’t show in loaded phpI’m using:
<?php define('WP_USE_THEMES', false); require('../wp/wp-blog-header.php'); ?>in the header to call WP. It loads standing alone, but once the same page is called via javascript into the div the tags don’t load. Thanks for the help!
Forum: Fixing WordPress
In reply to: Template tags don’t show in loaded phpAnyone might have an idea? Using these simple template tags:
<div class="news"> <?php query_posts('showposts=3'); ?> <?php while (have_posts()) : the_post(); ?> <span class="news_title"><?php the_title(); ?></span> <?php the_excerpt(); ?> <span class="news_date"><?PHP the_modified_date('F j, Y');?></span> <?php endwhile;?> <a href="#" class="news_link"> <span class="arrows">>></span> More News</a> </div>what did you (or if anyone else might know) end up doing to fix this if you dont mind me asking? thanks!
Viewing 4 replies - 1 through 4 (of 4 total)