of post_title; ?>

Return to Post

post_content, get_option( 'accessibility_guideline' ), 'string', 'array' ); $quail->setOption ( 'cms_mode', true ); $quail->runCheck(); $results = $quail->getReport(); $errors = accessible_helper_cleanup_results( $results ); foreach ( $errors as $severity => $error ) { echo '
'; echo '

'. accessible_helper_get_severity( $severity ) .'

'; echo '

'. $error['total'] .' problems

'; unset ( $error['total'] ); foreach ( $error as $test ) { echo '
'; echo '

'. $test['title'] .'

'; echo '
'; echo $test['body']; echo '
'; if ( is_array( $test['problems'] ) ) { echo '

'. __ ( 'Problems', 'accessible_helper' ) .'

'; echo ''; } echo '
'; } echo '
'; }