Show posts in overvieuw sorted by Form
Author | Posts |
---|---|
July 12, 2013 at 2:56 pm 5905 | |
MDelcour | I have a question about the overvieuw page of the users where they can edit/delete/see their posts. Ain't it a good idea to show posts sorted by which forms they were published with. So if I have form1 and form2 and I want to see only posts made by form1. Is there already a solution for this? |
July 12, 2013 at 3:29 pm 5908 | |
Tareq Hasan | The isn’t any direct solution for this, but you could use filters to achieve sorting. [php] return $args; add_filter( ‘wpuf_dashboard_query’, ‘wpufe_dashboard_post_type’ ); You might add a unique post type name, then check the post type and set the correct post type again (if you want |
July 12, 2013 at 4:17 pm 5909 | |
MDelcour | Hello Tareq, Thank you again for your great solution! I’ll go and try this out. |