Title: Relations Post Types
Author: Amaury Balmer
Published: <strong>29 ມິຖຸນາ 2010</strong>
Last modified: 17 ມິຖຸນາ 2013

---

ຄົ້ນຫາປລັກອິນ

ປລັກອິນນີ້ **ຍັງບໍ່ທັນໄດ້ຮັບການທົດສອບກັບ WordPress 3 ເວີຊັນຫຼັກຫຼ້າສຸດ**. ມັນອາດຈະ
ບໍ່ໄດ້ຮັບການເບິ່ງແຍງ ຫຼື ສະໜັບສະໜູນອີກຕໍ່ໄປ ແລະ ອາດມີບັນຫາການເຮັດວຽກຮ່ວມກັນເມື່ອ
ໃຊ້ກັບ WordPress ເວີຊັນທີ່ໃໝ່ກວ່າ.

![](https://s.w.org/plugins/geopattern-icon/relation-post-types.svg)

# Relations Post Types

 ໂດຍ [Amaury Balmer](https://profiles.wordpress.org/momo360modena/)

[ດາວໂຫຼດ](https://downloads.wordpress.org/plugin/relation-post-types.1.3.1.zip)

 * [ລາຍລອຽດ](https://lo.wordpress.org/plugins/relation-post-types/#description)
 * [ການຣີວິວ](https://lo.wordpress.org/plugins/relation-post-types/#reviews)
 *  [ການຕິດຕັ້ງ](https://lo.wordpress.org/plugins/relation-post-types/#installation)
 * [ການພັດທະນາ](https://lo.wordpress.org/plugins/relation-post-types/#developers)

 [ການຊ່ວຍເຫຼືອ](https://wordpress.org/support/plugin/relation-post-types/)

## ຄຳອະທິບາຍ

This plugin allow to build relation between 2 custom types (posts, page, custom),
very useful for manage related content on CMS type website.

A few example use cases:

 * manually lists of related posts
 * post series
 * rented houses connected to agency
 * etc.

Relationships are created from a settings page from the administration console.

This plugin can not do relationships with users, you should test this excellent 
plugin made by scribu
 https://wordpress.org/extend/plugins/posts-to-posts/

## ພາບໜ້າຈໍ

 * [[
 * Metabox in Post Types for creating a relation
 * [[
 * Option page to set relations between two content types

## ການຕິດຕັ້ງ

 1. Download, unzip and upload to your WordPress plugins directory
 2. Activate the plugin within you WordPress Administration Backend
 3. Go to Settings > Relations and enable relation between post type.

#### Display relations in its theme

Example, display 5 related pages in your single.php template :

    ```
    <?php
    $related_pages_ids = rpt_get_object_relation($id_post, 'page');
    if ( count($related_pages_ids) >= 1 ) {
        $related_pages = query_posts( array(
            'post_type' => 'page',
            'post_status' => 'publish',
            'posts_per_page' => 5
            'post__in' => $related_pages_ids,
            'orderby' => 'post_date',
            'order' => 'DESC',
        ) );

        echo 'Related pages' . "\n";
        echo '<ul>' . "\n";
        foreach ( $related_pages as $post ) {
            echo '<li><a href="'.get_permalink($post).'">'.get_the_title($post).'</a></li>' . "\n";
        }
        echo '</ul>' . "\n";
    }
    ?>
    ```

## ການຣີວິວ

ບໍ່ມີການຣີວິວສຳລັບປລັກອິນນີ້.

## ຜູ້ຮ່ວມພັດທະນາ ແລະ ຜູ້ພັດທະນາ

“Relations Post Types” ແມ່ນຊອຟແວໂອເພັນຊອດ (Open Source). ບຸກຄົນຕໍ່ໄປນີ້ໄດ້ມີສ່ວນຮ່ວມ
ໃນການພັດທະນາປລັກອິນນີ້.

ຜູ້ຮ່ວມພັດທະນາ

 *   [ Amaury Balmer ](https://profiles.wordpress.org/momo360modena/)
 *   [ Nicolas Juen ](https://profiles.wordpress.org/rahe/)

[ແປ “Relations Post Types” ເປັນພາສາຂອງເຈົ້າ.](https://translate.wordpress.org/projects/wp-plugins/relation-post-types)

### ສົນໃຈຮ່ວມພັດທະນາບໍ່?

[ເບິ່ງລະຫັດ](https://plugins.trac.wordpress.org/browser/relation-post-types/), ກວດເບິ່ງ
[ຄັງເກັບ SVN](https://plugins.svn.wordpress.org/relation-post-types/), ຫຼື ຕິດຕາມ
[ບັນທຶກການພັດທະນາ](https://plugins.trac.wordpress.org/log/relation-post-types/) 
ຜ່ານ [RSS](https://plugins.trac.wordpress.org/log/relation-post-types/?limit=100&mode=stop_on_copy&format=rss).

## ບັນທຶກການປ່ຽນແປງ

 * Version 1.3.1 :
    - Change settings for quantity, allow to set quantity for each post type
    - Add DIE for direct access
    - Add UNINSTALL method, remove only option. (not yet DB)
    - Move translation to INIT hook
 * Version 1.3 :
    - Compatibility with WP 3.5
    - Refactory code: use static methods, use views, new conding standards
    - Add setting for set quantity items
    - Improve performance for rpt_get_objects_most_used()
 * Version 1.2.4 :
    - Compatibility with WP 3.4
 * Version 1.2.3 :
    - No released version
 * Version 1.2.2 :
    - Fix a potential error with PHP Opcode Cache
    - Remove most recent tab, performance bad
 * Version 1.2.1 :
    - Add query var with prefix “rel-” for each CPT allow filtering on URL
 * Version 1.2 :
    - Stable enough for remove beta version
    - Add some template functions for an easier usage
    - Fix a very rare bug when a post type have relation with the same post type
      and when this relation is empty, that delete others relations of this post
      id. (thanks to bniess for reporting bug)
 * Version 1.1-beta2 :
    - Fix possible bug with others plugin’s beapi that use import
 * Version 1.1-beta1 :
    - Add tab for searching
    - Add tab to select most used elements
    - Add function to get the most associated elements from a post_type
    - Add import/export config tool
 * Version 1.0.13 :
    - Fix a warning on admin write page
 * Version 1.0.12 :
    - Fix a bug with CSS not existing. (bug copy/paste)
    - Add a argument for get single relation
 * Version 1.0.11 :
    - Fix name plugin
    - Possible fix for widget, add reset and use “post__in” instead “include”
 * Version 1.0.10 :
    - Fix bug with data lost and quick edit
 * Version 1.0.9 :
    - Fix possible bug with folder name
    - Fix bug with functions API and switch_to_blog()
 * Version 1.0.8 :
    - Fix potential warning during saving.
    - Fix bug that not allow to uncheck all relations
 * Version 1.0.7 :
    - Fix several bugS during saving relations, get relations.
 * Version 1.0.6 :
    - Check compatibility with WP 3.0.1
    - Fix constant construction. (try dynamic method)
 * Version 1.0.5 :
    - Fix renaming class
 * Version 1.0.4 :
    - Fix generation of metabox on admin. Fix for correspond to description and 
      remove stupid return…
 * Version 1.0.3 :
    - Fix notices
    - Allow relations between objects of the same post type
 * Version 1.0.2 :
    - Optimize some PHP codes
    - Add POT language + French
 * Version 1.0.1 :
    - Finalize widget !
    - Add nonce for improve security
 * Version 1.0.0 :
    - First version stable

## ຂໍ້ມູນກຳກັບ (Meta)

 *  ເວີຊັນ **1.3.1**
 *  ອັບເດດຫຼ້າສຸດເມື່ອ **13 ປີ ທີ່ຜ່ານມາ** ທີ່ຜ່ານມາ
 *  ການຕິດຕັ້ງທີ່ໃຊ້ງານຢູ່ **200+**
 *  ເວີຊັນ WordPress ** 3.0 ຫຼື ສູງກວ່າ **
 *  ທົດສອບເຖິງເວີຊັນ **3.5.2**
 *  ພາສາ
 * [English (US)](https://wordpress.org/plugins/relation-post-types/)
 * ແທັກ
 * [cms](https://lo.wordpress.org/plugins/tags/cms/)[custom](https://lo.wordpress.org/plugins/tags/custom/)
   [post type](https://lo.wordpress.org/plugins/tags/post-type/)[post types](https://lo.wordpress.org/plugins/tags/post-types/)
   [relation](https://lo.wordpress.org/plugins/tags/relation/)
 *  [ມຸມມອງຂັ້ນສູງ](https://lo.wordpress.org/plugins/relation-post-types/advanced/)

## ການໃຫ້ຄະແນນ

 5 ຈາກທັງໝົດ 5 ດາວ.

 *  [  ການວິຈານ 5 ດາວ ຈຳນວນ 1 ລາຍການ     ](https://wordpress.org/support/plugin/relation-post-types/reviews/?filter=5)
 *  [  ການວິຈານ 4 ດາວ ຈຳນວນ 0 ລາຍການ     ](https://wordpress.org/support/plugin/relation-post-types/reviews/?filter=4)
 *  [  ການວິຈານ 3 ດາວ ຈຳນວນ 0 ລາຍການ     ](https://wordpress.org/support/plugin/relation-post-types/reviews/?filter=3)
 *  [  ການວິຈານ 2 ດາວ ຈຳນວນ 0 ລາຍການ     ](https://wordpress.org/support/plugin/relation-post-types/reviews/?filter=2)
 *  [  ການວິຈານ 1 ດາວ ຈຳນວນ 0 ລາຍການ     ](https://wordpress.org/support/plugin/relation-post-types/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/relation-post-types/reviews/#new-post)

[ເບິ່ງ ຄຳຄິດເຫັນ ທັງໝົດ](https://wordpress.org/support/plugin/relation-post-types/reviews/)

## ຜູ້ຮ່ວມພັດທະນາ

 *   [ Amaury Balmer ](https://profiles.wordpress.org/momo360modena/)
 *   [ Nicolas Juen ](https://profiles.wordpress.org/rahe/)

## ການຊ່ວຍເຫຼືອ

ມີຄຳຖາມ ຫຼື ຕ້ອງການຄວາມຊ່ວຍເຫຼືອບໍ່?

 [ເບິ່ງຟໍຣັມການຊ່ວຍເຫຼືອ](https://wordpress.org/support/plugin/relation-post-types/)

## ບໍລິຈາກ

ເຈົ້າຕ້ອງການສະໜັບສະໜູນການພັດທະນາຂອງປລັກອິນນີ້ບໍ່?

 [ ບໍລິຈາກໃຫ້ປລັກອິນນີ້ ](http://www.beapi.fr/donate/)