fcntr( 'follows' ), 'classes' => [], 'action' => 'fictioneer_ajax_get_follows_list' ); } // Reminders? if ( get_option( 'fictioneer_enable_reminders' ) ) { // Add to tabs $tabs['reminders'] = array( 'name' => fcntr( 'reminders' ), 'classes' => [], 'action' => 'fictioneer_ajax_get_reminders_list' ); } // Checkmarks? if ( get_option( 'fictioneer_enable_checkmarks' ) ) { // Add to tabs $tabs['finished'] = array( 'name' => __( 'Finished', 'fictioneer' ), 'classes' => [], 'action' => 'fictioneer_ajax_get_finished_checkmarks_list' ); } // Return home if nothing to display if ( count( $tabs ) < 1 ) { wp_redirect( home_url() ); exit(); } // Use first tab if queried tab is not available if ( ! array_key_exists( $current_tab, $tabs ) ) { $current_tab = array_key_first( $tabs ); } // Select tab $tabs[ $current_tab ]['classes'][] = '_current'; // Header get_header( null, array( 'no_index' => 1 ) ); ?>
$current_tab, 'order' => $order === 'desc' ? 'asc' : 'desc' ), $current_url ) . '#main'; ?>

1 ) : ?>
$value ) : ?> ()
'page', 'post_id' => get_the_ID(), 'breadcrumbs' => array( [fcntr( 'frontpage' ), get_home_url()] ) ); // Add current breadcrumb $footer_args['breadcrumbs'][] = $this_breadcrumb; // Get footer with breadcrumbs get_footer( null, $footer_args ); ?>