* @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'); wp_enqueue_style('font_awesome_styles', get_template_directory_uri() . '/fonts/font-awesome-4.4.0/css/font-awesome.min.css', 'screen'); } 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

 Features

 Current features:
  • HTML5 Inside
  • CSS3 Inside
  • Easy to set up - Theme Customizer
  • Customize using "Google Web Fonts"
  • Built-in iconic font "Font Awesome"
  • Widget ready (in sidebar and footer)
  • Built-in Pagination
  • Built-in Breadcrumbs
  • Template page "HTML map of the website"
  • Template page "Without date"
  • Block "About Author" below posts
  • Custom text of copyright below posts
  • Custom text of copyright in footer
  • Custom header image
  • Custom logo together or instead of the title of website
  • Custom background
  • Custom menu
  • Ready for translation (Translated to 11 languages)
  • Published to the repository WordPess.org

 Coming soon:
  • Responsive designe
  • Sticky Posts



My Website

 

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

  • Russian (translated by Arthur Gareginyan)
  • Ukrainian (translated by Svetlana Drotyanko)
  • Slovak (translated by Martin Petrus)
  • Afrikaans (translated by MadriVictor)
  • Spanish (translated by Ivan Ratinoff)
  • Polish (translated by Krzysztof Goral)
  • German (translated by Alexander v. Falkenhausen)
  • Estonian (translated by Taavi Tiitsmaa)
  • Catalan (translated by Nestor Malet)
  • Danish (translated by Chano Klinck Andersen)


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