קוד 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;
?>
קוד 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;
?>