[php]<?php
/**
- @ Photo Nexus Index
*/
get_header();
?>
<?php
// Don't Populate list if no Featured page is set
if ( $featured_page <>"" ) {
?>
<?php get_footer(); ?>[/php]
<?php
// Grab all image attachements from the featured page
$images =& get_children( array(
'post_parent' => $featured_page,
'post_status' => 'inherit',
'post_type' => 'attachment',
'post_mime_type' => 'image',
'order' => 'ASC',
'numberposts' => $thelimit,
'orderby' => 'menu_order' )
);
// Loop through the images
foreach ( $images as $id => $image ) {
$attatchmentID = $image->ID;
$imagearray = wp_get_attachment_image_src( $attatchmentID , 'full', false);
$imageURI = $imagearray[0];
$imageID = get_post($attatchmentID);
$imageTitle = apply_filters('the_title',$image->post_title);
$postlink = get_permalink($image->post_parent);
// If linking is On
if ($featured_linked == 1 || $featured_linked == true) {
$attatchmentURL = get_attachment_link($image->ID);
}
// Count
$count++;
?>
<?php
if ( $phonx_image_resize==1 || $phonx_image_resize==true ) {
$newimage=wpmu_image_path($imageURI);
$imageURI = $timthumb_path . '?src=' . $newimage . '&w=730&q=72';
}
?>
<li class="featurecenter" >
<img src="<?php echo $imageURI; ?>" title="<?php echo $imageTitle ?>" alt="<?php echo $imageTitle ?>" />
</li>
<?php
}
?>
</ul>
<?php
// If Ends here for the Featured Page
}
?>
I am trying to put a div tag under the slider. If i put in like
hello
I can put it on top of the picture or below the footer. but i cannot see how i can put some text below the picture. I have inserted everywhere and the best i can do is insert text as a picture in the slideshow. I have even tried inserting basic php like get_page{}; but i have been unable to make it work. How would i go about getting between the slider and the footer?