* @copyright Copyright (c) 2013-2014, 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


Make a donation for Anarcho-Notepad
Leave Feedback

Support My Website

  • Русский (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)

You can translate this theme directly out of your WordPress Admin Panel with the plugin "CodeStyling Localization". Many of theme users would be delighted if you shared your translation files with the community. Just send the *.po and *.mo files generated by this plugin to me at the arthurgareginyan@gmail.com and I will include the translation files within the one of the next theme update.


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' );