• Hi Paul
    Just saw the new beta, excited to check it out!

    In the mean time, I am struggling to figure out exactly how to integrate this plug-in with media-tags callback’s:

    https://www.nsp-code.com/advanced-post-types-order-api/sample-usage/

    I purchased the pro version as it offers manual sort orders for images, and it can hook into media-tags (and other custom taxonomies). The problem is that while the admin area sorts just fine, I can’t get the front end to work. Where would I go to modify the wp_query code that media-tags is using to fulfill the callbacks that I’ve created? As you can see, it isn’t “sort by menu_order”, there are additional parameters that I need to put in…

    https://www.ads-software.com/plugins/media-tags/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Jason Robinson

    (@jsrobinson)

    $args = array(
    2	            'post_type' => 'feature',
    3	            'orderby'       => 'menu_order',
    4	            'order'         => 'ASC',
    5	            'tax_query'     => array(
    6	                            array(
    7	                                'taxonomy'  => 'movies',
    8	                                'field'         => 'id',
    9	                                'terms'     => 10
    10	                                )
    11	                            )
    12	            );
    13	$my_query = new WP_Query($args);
    14	while ($my_query->have_posts())
    15	    {
    16	        $my_query->the_post();
    17	        //(..your code..)
    18	    }
    - See more at: https://www.nsp-code.com/advanced-post-types-order-api/sample-usage/#sthash.d9fj9c8I.dpuf
    Plugin Author Paul Menard

    (@pmenard)

    @jsrobinson,

    Thanks for posting. I would satay away from the beta I posted in this forum. There will be a new beta soon.

    I’m not really sure how you are trying to use the Media-Tags plugin. Realize that Media-Tags simply registers a custom taxonomy (media-tags) and associates it with the ‘attachment’ post_type. That being said you don’t need to use the built-in query from Media-Tags. You can write your own WP_Query to access the taxonomy items. Then do whatever sorting, filtering you need

    I don’t think I actually answered your original question. Sorry. Let me know if I can help.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Custom Taxonomy?’ is closed to new replies.