‫תגובות לפוסט: "וורדפרס Help"‬ http://wordpress123.info ‫הכל אודות וורדפרס ובעברית‬ Sat, 03 Oct 2009 07:23:46 +0000 hourly 1 http://wordpress.org/?v=abc ‫תגובה לפוסט: "PHP" מאת "admin"‬ http://wordpress123.info/codex/php/comment-page-1/#comment-6 ‫admin‬ Sat, 03 Oct 2009 07:23:46 +0000 http://wordpress123.info/?page_id=177#comment-6 ‫<h5>קוד PHP פשוט המשמש לפעולה פשוטה ותדירה יחסית בוורדפרס</h5> <br> <div id="article"> <?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; ?> </div>‬
קוד 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;
?>

]]>