• I would like to change the order of what I see when I make a new post. I would like to move the custom fields above my text editor. Been looking how to do that but can’t find any solution. Part off my posts will be buidl with information from my custom fields, so they are very important!

Viewing 1 replies (of 1 total)
  • I if u want to change the order of post then U can try this code
    $args = array(
    ‘showposts’ => 2,//for nos of post u want to show
    ‘category_name’ => ‘xyz’, // name of category
    ‘orderby’=>’meta_value’,
    ‘meta_key’=>’view_order’, //view_order is custum field to that post
    ‘order’=>’ASC’ //Order of post ascending or decending
    );

    Put the order You in custom field here is view_order making in new post

Viewing 1 replies (of 1 total)
  • The topic ‘Change the order in post’ is closed to new replies.