Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Forum: Plugins
    In reply to: preg_replace the_author()
    Thread Starter wujek

    (@wujek)

    Where can I modify “the_author()” function?

    Thread Starter wujek

    (@wujek)

    Em, first sorry for my english. It’s not my native :p

    My site was completly inoperative. I couldn’t do anything for like 5 minutes so I wrote here. After that, I opened my site from history list and refreshed. It worked. It stopped this plugin from working (I really couldn’t open a single page).

    But now everything works good, thanks for answer by the way

    (imagine now that your site is totaly unavailable, u can only access ftp and deleting directory don’t help ?? )

    Thread Starter wujek

    (@wujek)

    I tried “automatic links” plugin but it works with pages and news only

    Thread Starter wujek

    (@wujek)

    I GOT IT!

    It helped me:

    <?php
       $args=array(
       'showposts'=>5,
       'post_type' => 'page',
       'caller_get_posts'=>1
       );
    $my_query = new WP_Query($args);
    if( $my_query->have_posts() ) {
      while ($my_query->have_posts()) : $my_query->the_post(); ?>
        <p><small><?php the_time('m.d.y') ?></small> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p>
        <?php
      endwhile;
    }
    ?>

    Thread Starter wujek

    (@wujek)

    please.. It’s very important for me

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