loadData(); $this->loadCategories(); } private function loadData() { $this->aSavedData = (array) get_option( 'buttonizer_page_categories' ); $this->aAllPages = get_pages(); } private function loadCategories() { // Get buttons $aCategories = ( isset( $this->aSavedData['categorieOrder'] ) && is_array( $this->aSavedData['categorieOrder'] ) ? $this->aSavedData['categorieOrder'] : [ 0 => '-1', ] ); if ( $aCategories[0] != '-1' ) { $aCategories[-1] = '-1'; } echo '
' ; // Not removable button row echo '
All pages Delete
When a button is set on \'All pages\', the button will shown on all pages.

You cannot edit the \'All pages\' item.
' ; echo '
You are missing the fun! When upgrading to Buttonizer Pro you will unlock page categories.
' ; echo '
' ; } private function loadIndividialCategoryRow( $sCategoryKey, $iCategoryId, $bDisabled ) { } }