* @copyright Copyright (c) 2013-2015, Arthur Gareginyan * @link http://mycyberuniverse.com/anarcho-notepad.html * @license http://www.gnu.org/licenses/gpl-3.0.html */ // Add some CSS so I can Style the Theme Options Page function anarcho_include_theme_options_style() { wp_enqueue_style('anarcho_theme_options_styles', get_template_directory_uri() . '/theme_info.css', false, '1.0'); } add_action('admin_print_styles-appearance_page_theme_options', 'anarcho_include_theme_options_style'); // Create the Theme Information page (Theme Options) function anarcho_theme_options_do_page() { ?>

"Anarcho Notepad"

by Arthur "Berserkr" Gareginyan

My Website

English and translated into:', 'anarcho-notepad'); ?>

  • Русский (translated by Arthur Gareginyan)
  • Українська (translated by Svetlana Drotyanko)
  • Slovenčina (translated by Martin Petrus)
  • Afrikaans (translated by MadriVictor)
  • Español (translated by Ivan Ratinoff)
  • Polski (translated by Krzysztof Goral)
  • German (translated by Alexander v. Falkenhausen)
  • Estonian (translated by Taavi Tiitsmaa)
  • Catalan (translated by Néstor Malet)
  • Danish (translated by Chano Klinck Andersen) – Coming soon!


add_menu( array( 'parent' => 'top-secondary', // Off on the right side 'id' => 'anarcho-help' , 'title' => __( 'Help' , 'anarcho-notepad' ), 'href' => admin_url( 'themes.php?page=theme_options' ), 'meta' => array( 'title' => __( 'Need help with Anarcho-Notepad? Click here!', 'anarcho-notepad' ), ), )); } } add_action ( 'wp_before_admin_bar_render', 'anarcho_add_help_button' ); //enqueue additional styling for admin screens function anarcho_include_admin_style() { wp_enqueue_style( 'anarcho_admin_styles', get_template_directory_uri() . '/admin.css' ); } add_action( 'admin_init', 'anarcho_include_admin_style' );