kkhalifax
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How do I add a contact form in my wordpress.org site?There are TONS of plug-ins for contact forms. Go to Plug-Ins > Add New and search contact forms.
Forum: Themes and Templates
In reply to: Pull images and text to homepage content boxesesmi,
This was really helpful. I plugged in <?php the_content_rss(‘cut’, TRUE, ”, 19, 2); ?> and nothing seemed to happen, but having read the link you sent I tried a few different variations. I plugged in ‘3’ instead of ‘2’ and that seemed to do the trick.
Unless there are any problems you foresee with that coding, thank you so much for fixing a big problem of ours.
Forum: Themes and Templates
In reply to: Pull images and text to homepage content boxesThanks esmi
The index.php page uses the following code for each of the three boxes:
<div class=”grid_4 alpha”>
<?php query_posts(‘page_id=’.get_option(‘column1’));
while (have_posts()) : the_post(); ?>
<h3 class=”title-icon1″>
<?php the_title(); ?>
</h3>
<p>
<?php the_content_rss(‘cut’, TRUE, ”, 19); ?>
</p>
” class=”view-more”><?php endwhile; ?>
</div>The only difference are the names of the div classes. The line in question is <?php the_content_rss(‘cut’, TRUE, ”, 19); ?> which, if I swap out with an absolute image url I can manually override the problem. Are there changes I can make to that code to allow it to pull images as well as text? Thanks.