Plugin Directory

Changeset 372738


Ignore:
Timestamp:
04/14/2011 01:00:39 AM (15 years ago)
Author:
johnleblanc
Message:

readme cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • docs-auto-tags/trunk/readme.txt

    r372737 r372738  
    19191. Configure your settings within the 'Tools' area in the Dashboard
    2020
    21 == FAQS ==
     21== Changelog ==
    2222
    23 Great, my newly saved posts are being auto-tagged.  How do I filter posts by tag within the WordPress Loop?
    24 
    25 Replace:
    26 `<?php query_posts("cat=-10&paged=$paged") ?>`
    27 ...with:
    28 `<?php
    29 $args = array(
    30     'category__not_in' => array( 10 ),
    31     'tag__not_in' => array( 42 ),
    32     'paged' => $paged,
    33     );
    34 query_posts($args);
    35 ?>`
    36 
    37 
    38 == Changelog ==
     23= 0.4 =
     24readme.txt cleanup
    3925
    4026= 0.3 =
     
    4935== Upgrade Notice ==
    5036
    51 = 0.3 =
    52 Upgrade now to fix a bum function callback
     37= 0.4 =
     38Please upgrade to the latest version.
     39
     40== Frequently Asked Questions ==
     41
     42Great, my newly saved posts are being auto-tagged.  How do I filter posts by tag within the WordPress Loop?
     43
     44Replace the old call to query_posts()
     45`<?php query_posts("cat=-10&paged=$paged") ?>`
     46with a cleaner version
     47`<?php
     48$args = array(
     49    'category__not_in' => array( 10 ),
     50    'tag__not_in' => array( 42 ),
     51    'paged' => $paged,
     52    );
     53query_posts($args);
     54?>`
Note: See TracChangeset for help on using the changeset viewer.