menesrk
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
Forum: Fixing WordPress
In reply to: Custom Fields Not Workingok. thanks yall..
Forum: Fixing WordPress
In reply to: Custom Fields Not Workingwhere do i need to add that? the_meta() ?
Forum: Fixing WordPress
In reply to: Custom Fields Not WorkingI just wanted a horizontal theme so I used multiple loops to split the content [which isn’t working too well with ‘view next post’]…
now I’m making a custom field so I can display a diff background image on each post/page so apparently i need to put it inside it’s own loop but it’s just going blank.
Forum: Fixing WordPress
In reply to: Custom Fields Not Workingyes that’s where i took that code from.. – when i view source none of the custom fields are showing up..
Forum: Fixing WordPress
In reply to: Custom Fields Not Workingthat was my attempt to put it inside it’s own loop. still didn’t work.
Forum: Fixing WordPress
In reply to: Custom Fields Not Workingthe thing is I’m using multiple loops
<?php rewind_posts(); ?> <?php while (have_posts()) : the_post(); ?> <div id="myBG" style="height:100%;width:100%;z-index:10;visibility:show;position:absolute;overflow:auto;left:0px;bottom:0px;background-image:url(<?php $mykey3='mykey3'; echo get_post_meta($post->ID, bg_tile, true); ?>);"> <table height="96%" width="100%" cellpadding="0" border="0" cellspacing="0" style="background-image:url(<?php $key200='mykey3'; echo get_post_meta($post->ID, bg_tile, true); ?>);background-attachment:scroll;"><tr valign="bottom"><td> <?php $Image = get_post_meta($post->ID, 'bg_image', true); ?> <?php echo $Image; ?> <img src="<?php echo $Image; ?>" name="MainImage" alt="" border="0" /> </td></tr></table> </div> <?php endwhile; ?>
Viewing 6 replies - 1 through 6 (of 6 total)