• Resolved abbottr

    (@abbottr)


    I’m wondering what code I will need in order to add a custom field to a custom post type that will allow me to link it to another custom post type that has already been created.

    For example, the site has ‘Spaces’ and ‘Buildings’ as two different custom post types. When adding a new ‘space’ post for lease or sale, I need to link that space to an existing ‘building’ post. Basically I want the spaces to live within the buildings almost like a parent, but as two separate custom post types.

    So, the admin field must create an array of all of the existing ‘buildings’ custom posts, and then allow the user to choose one to link too. I’ve been messing around with foreach loops, but can’t seem to even generate a list of the buildings. Any help is greatly appreciated!!

    http://wordpress.org/extend/plugins/custom-post-type-ui/

Viewing 1 replies (of 1 total)
  • Thread Starter abbottr

    (@abbottr)

    I found a code to loop through pages, and display them as check boxes in the admin, but I need to be able to loop through the ‘buildings’ custom post types instead.

    foreach ($pages as $page) {
       		if(in_array($page->ID, $value)){
        		    			echo("<span class='check'><input type='checkbox' class='checkbox' value='$page->ID' checked='checked' name='$page->ID' id='$page->ID'/><label for='$page->ID'>$page->post_title</label></span>");
       		}else{
       			echo("<span class='check'><input type='checkbox' class='checkbox' value='$page->ID' name='$page->ID' id='$page->ID'/><label for='$page->ID'>$page->post_title</label></span>");
       		}
       	}
Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Custom Post Type UI] Link together Custom Post types in admin’ is closed to new replies.