• Resolved rococonouveau

    (@rococonouveau)


    So I edited the stylesheet for this theme called designpile. It has a function where you can have a featured post with a big splashy image on the top. However, if I want to make a post there without an image it gives me alt text with a link and a border which just looks icky.

    Long story short, I want to edit the code so that if there is a featured image specified it will show up as it does now. If there is no featured image specified it will just give you the text excerpt and nothing else.

    Here is the code I tracked down where I think this is happening and I’m not sure how to edit it. Any ideas? Also, this is the site http://www.tednaifeh.com

    <div class=”featuredDetails”>

    <?php $featured_img = get_post_meta($post->ID, ‘featured_img’, $single = true); ?>

    “><img src=”<?php echo $featured_img ?>” border=”0″; alt=”<?php the_title()?>”/>

    <?php the_excerpt()?>
    </div>

Viewing 4 replies - 1 through 4 (of 4 total)
  • Michael

    (@alchymyth)

    please re-post your code and mark it following the forum guidelines for posting code – the above code is corrupted and unreadable.

    Thread Starter rococonouveau

    (@rococonouveau)

    oops! sorry about that…

    <div class="featuredDetails">
    
    <?php $featured_img = get_post_meta($post->ID, 'featured_img', $single = true); ?>
    
    <a href="<?php the_permalink(); ?>"><img src="<?php echo $featured_img ?>" border="0"; alt="<?php the_title()?>"/></a>
    
    <?php the_excerpt()?>
    
    </div>
    Michael

    (@alchymyth)

    <div class="featuredDetails">
    
    <?php $featured_img = get_post_meta($post->ID, 'featured_img', $single = true); ?>
    <?php if( $featured_img ) { ?>
    <a href="<?php the_permalink(); ?>"><img src="<?php echo $featured_img ?>" border="0"; alt="<?php the_title()?>"/></a>
    <?php } ?>
    <?php the_excerpt()?>
    
    </div>
    Thread Starter rococonouveau

    (@rococonouveau)

    BEAUTIFUL!!! Thank you so much.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘php newbie – need help with a sticky featured image border/link’ is closed to new replies.