__( 'Main Menu', 'blankest' ) ) ); } add_action( 'wp_enqueue_scripts', 'blankest_load_scripts' ); function blankest_load_scripts() { wp_enqueue_script( 'jquery' ); } add_action( 'comment_form_before', 'blankest_enqueue_comment_reply_script' ); function blankest_enqueue_comment_reply_script() { if ( get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_filter( 'the_title', 'blankest_title' ); function blankest_title( $title ) { if ( $title == '' ) { return '→'; } else { return $title; } } add_filter( 'wp_title', 'blankest_filter_wp_title' ); function blankest_filter_wp_title( $title ) { return $title . esc_attr( get_bloginfo( 'name' ) ); } add_action( 'widgets_init', 'blankest_widgets_init' ); function blankest_widgets_init() { register_sidebar( array ( 'name' => __( 'Sidebar Widget Area', 'blankest' ), 'id' => 'primary-widget-area', 'before_widget' => '