Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Forum: Fixing WordPress
    In reply to: wp_get_archives
    Thread Starter rleap

    (@rleap)

    Here is what I ended up doing. Since I am not a php guru, this is probably not the most effecient code, however it works. You can see it in action on my home page. http://www.twoguysnamedrob.com

    <!-- Start date archive link list-->
    <?php
    $dt = mktime(0,0,0,date("m"),date("d")-1,date("Y"));
    ?>
    
    <a href="http://www.twoguysnamedrob.com/<?php echo date("Y/m/d", $dt); ?>/"><?php echo date("m/d", $dt); ?></a>
    
    &nbsp;|&nbsp;
    
    <?php
    $dt = mktime(0,0,0,date("m"),date("d")-2,date("Y"));
    ?>
    
    <a href="http://www.twoguysnamedrob.com/<?php echo date("Y/m/d", $dt); ?>/"><?php echo date("m/d", $dt); ?></a>
    
    &nbsp;|&nbsp;
    
    <?php
    $dt = mktime(0,0,0,date("m"),date("d")-3,date("Y"));
    ?>
    
    <a href="http://www.twoguysnamedrob.com/<?php echo date("Y/m/d", $dt); ?>/"><?php echo date("m/d", $dt); ?></a>
    
    &nbsp;|&nbsp;
    
    <?php
    $dt = mktime(0,0,0,date("m"),date("d")-4,date("Y"));
    ?>
    
    <a href="http://www.twoguysnamedrob.com/<?php echo date("Y/m/d", $dt); ?>/"><?php echo date("m/d", $dt); ?></a>
    
    &nbsp;|&nbsp;
    
    <?php
    $dt = mktime(0,0,0,date("m"),date("d")-5,date("Y"));
    ?>
    
    <a href="http://www.twoguysnamedrob.com/<?php echo date("Y/m/d", $dt); ?>/"><?php echo date("m/d", $dt); ?></a>
    
    &nbsp;|&nbsp;
    
    <?php
    $dt = mktime(0,0,0,date("m"),date("d")-6,date("Y"));
    ?>
    
    <a href="http://www.twoguysnamedrob.com/<?php echo date("Y/m/d", $dt); ?>/"><?php echo date("m/d", $dt); ?></a>
    
    &nbsp;|&nbsp;
    
    <?php
    $dt = mktime(0,0,0,date("m"),date("d")-7,date("Y"));
    ?>
    
    <a href="http://www.twoguysnamedrob.com/<?php echo date("Y/m/d", $dt); ?>/"><?php echo date("m/d", $dt); ?></a>
    
    <!-- End link list-->

    jessn

    When you login to feedburner and edit your feed details, what is your original feed link? I had the exact same problem as you and I finally figured out I was using the following link in error.

    http://www.twoguysnamedrob.com/feed/rss/

    I changed the link to this:

    http://www.twoguysnamedrob.com/feed/

    and that solved everything. My full feed showed up along with all pics.

    rleap

    (@rleap)

    I am experiencing the same problem and have not figured out how to correct it.

Viewing 3 replies - 1 through 3 (of 3 total)