cmoreira

team showcase fields order filter

Aug 1st, 2018
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. add_filter('tshowcase_content_order','tshowcase_content_order');
  2. function tshowcase_content_order($tshowcase_fields){
  3.  
  4.     $ts_content_order = array(
  5.         1 => 'title',
  6.         2 => 'groups',
  7.         3 => 'taxonomy',
  8.         4 => 'ctaxonomy',
  9.         5 => 'dtaxonomy',
  10.         6 => 'position',
  11.         7 => 'location',
  12.         8 => 'telephone',
  13.         9 => 'email',
  14.         10 => 'freehtml',
  15.         11 => 'website'
  16.     );
  17.  
  18.     return $ts_content_order;
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment