Custom sortable pages on custom post type
You can definitely do this with Advanced Custom Fields: http://www.advancedcustomfields.com/resources/relationship/ An Options Page isn’t free though.
You can definitely do this with Advanced Custom Fields: http://www.advancedcustomfields.com/resources/relationship/ An Options Page isn’t free though.
I was told about the fabulous posts 2 posts plugin which does exactly what I need. Issue resolved.
Not Able to Display Metabox Saved Checkbox and Selected option After Save/ Update
Add different meta box based on taxonomy
I don’t really understand this sentence– “It must get me only all post from unit post type that in unit type post type,”– and honestly the query looks correct to me, but I would suggest trying a meta_query and specifying the type, as well as disabling sticky post juggling. If you have 6 or more … Read more
Okay, so you can paste this on your front page template. I assumed that your $prefix is prefix and products page id is 11 and you want to print last 3 entries. <?php $meta_entries_pre = get_post_meta( 11, ‘prefix_repeat_group’, true ); $meta_entries_int = array_reverse( $meta_entries_pre ); $meta_entries = array_slice( $meta_entries_int, 0, 3 ); if( ! empty( … Read more
I found the answer my self, the issue had to do with a line requesting the content of the metabox (as expected). The line: ‘template’ => get_template_directory() . ‘/lib/metaboxes/custom_textbox.php’, should have been changed to: ‘template’ => get_stylesheet_directory() . ‘/lib/metaboxes/custom_textbox.php’, According (to the WordPress Codex) will get the path for the main theme. If you want … Read more
Ridiculous problem with CDATA [duplicate]
Display a post based on its metabox selection
custom field meta-box with dropdown/autocomplete