WP Manifestindependent plugin directory
manifest / content / cmb2-attached-posts

CMB2 Field Type: Attached Posts WP Registry grade A. No security issues foundWP RegistryNo security issues foundOpen the reportA releases

Custom field for CMB2 for attaching posts to a page.

by WebDevStudios · github.com/cmb2/cmb2-attached-posts · website

134stars
66kcomposer installs
59forks

Install

No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:

wp plugin install https://github.com/cmb2/cmb2-attached-posts/archive/refs/heads/master.zip

Also on Packagist as webdevstudios/cmb2-attached-posts:

composer require webdevstudios/cmb2-attached-posts

CMB2 Attached Posts Field

Custom field for CMB2.

The post IDs are saved in an array, which can be rearranged by dragging and dropping posts in the attached posts column. Now incorporates the same search field as the CMB2 Post Search field.

Installation

Follow the example in example-field-setup.php for a demonstration. The example assumes you have both CMB2 and this extension in your mu-plugins directory. If you're using CMB2 installed as a plugin, remove lines 6-9 of the example.

Customization

The example demonstrates how to modify the get_posts query args, and allows you to toggle the thumbnails display as well as a filter search input.

Usage

You can retrieve the meta data using the following:

$attached = get_post_meta( get_the_ID(), '_attached_cmb2_attached_posts', true );

This will return an array of attached post IDs. You can loop through those post IDs like the following example:

foreach ( $attached as $attached_post ) {
    $post = get_post( $attached_post );
}

Once you have the post data for the post ID, you can proceed with the desired functionality relating to each attached post.

Screenshots

  1. Field display
    Field display`

  2. Post search
    Post search`

Changelog

1.2.7

  • Add default column display output. Simply add 'column' => true, to your field registration.

1.2.6

  • Add post type label next to post title when multiple post-types are specified in the query args.
  • Open attached-posts links in new window, so as not to leave the current editing window. Props Shelob9, #37, #36.

1.2.5

  • Combined the best bits from the CMB2 Post Search field type and this field type, so now you can search for additional posts/pages/etc to be attached. User search is not currently supported. (#7).

1.2.4

  • Add support for attaching Users instead of Posts/Custom Posts. Props mckernanin (#27).

1.2.3

  • Add loader to manage loading the most recent version of this lib.

1.2.2

1.2.1

  • Add Search Filter Boxes to Lists. Props @owenconti.

1.2.0

  • Add plugin support. Props @yelly.

Releases

8 releases.

Tag
Published
v1.2.7 latest
Nov 9, 2017 8 years ago
May 15, 2017 9 years ago
May 15, 2017 9 years ago
Aug 31, 2016 10 years ago
Mar 27, 2016 10 years ago
Jun 1, 2015 11 years ago
May 31, 2015 11 years ago
May 31, 2015 11 years ago

These releases are tags only. The author does not attach a packaged zip, so there are no download counts to report.

A grade

Security

CMB2 Field Type: Attached Posts 1.2.7 · audited by WP Registry

No security issues found.

Audited release
1.2.7
Findings
none
Worst severity
Content hash
2b8fab47f65847647743e5f9…

WP Registry hashes the installable build and reports on that exact bytes-for-bytes copy. Embargoed findings are withheld until they are disclosed, so a clean verdict means nothing public is outstanding. WP Manifest does not audit code itself.