Tento plugin nebol testovaný s najnovšími 3 hlavnými vydaniami WordPress. Už nemusí byť udržiavaný alebo podporovaný a môže mať problémy s kompatibilitou pri použití s novšími verziami WordPress.

No Sub-Category Posts in Loops

Popis

Once activated, only posts from the current category are displayed in your loop (no posts from sub cats).
That’s all it does. No options. If you find you need options, let me know and I’ll build them into it.

As of 0.4 I remove the filter after the main query is built so that it doesn’t interfere with widgets.
If you have a custom query or call wp_query on a category archive template, you’ll need to add and remove the filters before and after your query. Below is an example of how to do this if you use wp_query. Again, this is not necessary unless you have modified queries in a template file.

add_filter( 'posts_where', 'ft_nscp_mod_where' );
query_posts( array( 'your-custom' => 'args' ) );
remove_filter( 'posts_where', 'ft_nscp_mod_where' );

Its important that you remove what you add.

Inštalácia

  1. Upload the directory „ft-no-subcats-in-loop“ to the /wp-content/plugins/ directory
  2. Aktivujte modul cez položku „Moduly“ v menu vo WordPress

Časté otázky

Where can I find help or make suggestions?

http://fullthrottledevelopment.com/no-sub-category-posts-in-loop

Recenzie

Pre tento plugin nie sú žiadne recenzie.

Prispievatelia a vývojári

“No Sub-Category Posts in Loops” je softvér s otvoreným zdrojovým kódom. Do tohto pluginu prispeli nasledujúci ľudia.

Prispievatelia

Zoznam zmien

  • 0.5 – Fixed bug that broke plugin in 3.1. Props @ollybenson (http://gln.to/oshcw)
  • 0.4 – Fixed bug introduced with WordPress 3.1. Added inline docs. Removed filter after main query is built.
  • 0.3 – Modified directory structure so that plugin may be added and activated from wp-admin
  • 0.2 – Forgot to define a global, preventing posts from appearing that should. (thanks to http://redfootwebdesign.com for the heads up!)
  • 0.1 – Original release.