PHP

  1. admin
    3 אוקטובר, 2009 מתוך 09:23 | #1
    קוד PHP פשוט המשמש לפעולה פשוטה ותדירה יחסית בוורדפרס

    < ?php
    // Get posts excluding category id 5
    query_posts('cat=4');
    // the Loop
    while (have_posts()) : the_post();
    // the content of the post
    the_title();
    endwhile;
    ?>
    < ?php
    // Get posts excluding category id 5
    query_posts('cat=4');
    // the Loop
    while (have_posts()) : the_post();
    // the content of the post
    the_content('Read the full post »');
    endwhile;
    ?>

  1. אין הפניות עדיין.