Can this plugin call variables from my custom page?
I'm looking to use this menu to sort the tables on my custom page. My custom page creates an array (which you may be familiar with in another post):
PHP Code:
$columns = array(
'column1' => $field1st,
'title1' => $title1st,
'column2' => $field2nd,
'title2' => $title2nd,
'column3' => $field3rd,
'title3' => $title3rd,
'column4' => $field4th,
'title4' => $title4th,
'column5' => $field5th,
'title5' => $title5th,
'column6' => $field6th,
'title6' => $title6th,
'column7' => $field7th,
'title7' => $title7th,
'column8' => $field8th,
'title8' => $title8th
);
Anyhow, instead of link1, I'd like to use $columns['title1'] in this plugin.