هذه الإضافة لم يتم تحديثها وتجربتها لأكثر من 3 إصدارات ووردبريس رئيسية. قد لا تكون خاضعة للصيانة أو تقدم الدعم والمساعدة بالوقت الحالي وقد تكون بها مشاكل في التوافق عند إستخدامها مع إصدارات حديثة من ووردبريس.

Select Primary Category

الوصف

Features:
* Ability to designate a primary category for posts and custom post types.
* Supports custom post types and custom taxonomies with hierarchical structure.
* Category in permalink is the primary category, if one is set.
* Shortcode for displaying posts with a specific primary category.
* CLI command for listing posts with a specific primary category.

التنصيب

  1. Add the plugin folder to WordPress’ plugin directory.
  2. Activate the plugin from Admin > Plugins.
  3. Start using it.

الأسئلة المتكررّة

Installation Instructions
  1. Add the plugin folder to WordPress’ plugin directory.
  2. Activate the plugin from Admin > Plugins.
  3. Start using it.
When using the shortcode, do I need to use the primary category’s ID, slug or name?

You can use either of them. E.g. assuming a category with ID 3, slug ‘ground-coffee’ and name ‘Ground Coffee’.
the following shortcode definitions will all work:

[posts_by_primary_category category="3"]
[posts_by_primary_category category="ground-coffee"]
[posts_by_primary_category category="Ground Coffee"]
Developers’ Notes

If you want to fetch posts belonging to a particular category (or, more generally, belonging to a particular term)
you can use this:

if ( class_exists( 'SPC_Queries' ) ) {
    /*
     * Let's fetch 10 published posts with primary category set to category ID 2.
     */
    $spc_queries =  SPC_Infrastructure_Container::get_instance()->get( 'SPC_Queries' );
    $posts = $spc_queries->get_primary_term_posts( 2, array(
        'post_status'    => 'publish',
        'posts_per_page' => 10,
        'post_type'      => 'post',
    ) );
}

You can just as well pass a category slug or name, instead of its ID, if you prefer.

المراجعات

لا توجد مراجعات لهذه الإضافة.

المساهمون والمطوّرون

“Select Primary Category” هو برنامج مفتوح المصدر. وقد ساهم هؤلاء الأشخاص بالأسفل في هذه الإضافة.

المساهمون

ترجمة ”Select Primary Category“ إلى لغتك.

مُهتم بالتطوير؟

تصفّح الشفرة، تحقق من مستودع SVN، أو الاشتراك في سجل التطوير بواسطة RSS.

سجل التغييرات

1.0

  • Initial public release.