global $content_width; if ( ! isset( $content_width ) ) $content_width = 640; /* pixels */ if (!function_exists('library_books_setup')): /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which runs * before the init hook. The init hook is too late for some features, such as indicating * support post thumbnails. */ function library_books_setup() { load_theme_textdomain('library-books', get_template_directory() . '/languages'); add_theme_support('automatic-feed-links'); add_theme_support('woocommerce'); add_theme_support('post-thumbnails'); add_theme_support('custom-header'); add_theme_support('title-tag'); add_theme_support('custom-logo', array( 'height' => 52, 'width' => 268, 'flex-height' => true, )); register_nav_menus(array( 'primary' => esc_html__('Primary Menu', 'library-books') , )); add_theme_support('custom-background', array( 'default-color' => 'ffffff' )); add_editor_style( 'editor-style.css' ); add_post_type_support( 'page', 'excerpt' ); } endif; // library_books_setup add_action('after_setup_theme', 'library_books_setup'); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function library_books_widgets_init() { register_sidebar(array( 'name' => esc_html__('Sidebar', 'library-books') , 'description' => esc_html__('Appears on page/post sidebar', 'library-books') , 'id' => 'sidebar-1', 'before_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'name' => esc_html__('Footer Column 1', 'library-books') , 'description' => esc_html__('Appears on footer', 'library-books') , 'id' => 'fc-1', 'before_widget' => '', 'before_title' => '
', 'after_title' => '
', )); register_sidebar(array( 'name' => esc_html__('Footer Column 2', 'library-books') , 'description' => esc_html__('Appears on footer', 'library-books') , 'id' => 'fc-2', 'before_widget' => '', 'before_title' => '
', 'after_title' => '
', )); register_sidebar(array( 'name' => esc_html__('Footer Column 3', 'library-books') , 'description' => esc_html__('Appears on footer', 'library-books') , 'id' => 'fc-3', 'before_widget' => '', 'before_title' => '
', 'after_title' => '
', )); } add_action('widgets_init', 'library_books_widgets_init'); /** * Register custom fonts. */ function library_books_font_url() { $font_url = ''; /* Translators: If there are any character that are not * supported by Roboto Condensed, trsnalate this to off, do not * translate into your own language. */ $robotocondensed = _x('on', 'robotocondensed:on or off', 'library-books'); /* Translators: If there has any character that are not supported * by Scada, translate this to off, do not translate * into your own language. */ $scada = _x('on', 'Scada:on or off', 'library-books'); /* Translators: If there has any character that are not supported * by Roboto Slab, translate this to off, do not translate * into your own language. */ $robotoslab = _x('on', 'Roboto Slab:on or off', 'library-books'); /* Translators: If there has any character that are not supported * by Merriweather, translate this to off, do not translate * into your own language. */ $merriweather = _x('on', 'Merriweather:on or off', 'library-books'); /* Translators: If there has any character that are not supported * by Roboto, translate this to off, do not translate * into your own language. */ $roboto = _x('on', 'Roboto:on or off', 'library-books'); /* Translators: If there has any character that are not supported * by Lato, translate this to off, do not translate * into your own language. */ $lato = _x('on', 'Lato:on or off', 'library-books'); /* Translators: If there has any character that are not supported * by Playfair Display, translate this to off, do not translate * into your own language. */ $playfairdisplay = _x('on', 'Playfair Display:on or off', 'library-books'); /* Translators: If there has any character that are not supported * by Assistant , translate this to off, do not translate * into your own language. */ $assistant = _x('on', 'Assistant:on or off', 'library-books'); if ('off' !== $robotocondensed) { $font_family = array(); if ('off' !== $robotocondensed) { $font_family[] = 'Roboto Condensed:300,400,600,700,800,900'; } if ('off' !== $robotoslab) { $font_family[] = 'Roboto Slab:300,400,700'; } if ('off' !== $merriweather) { $font_family[] = 'Merriweather:300,400,400i,700,700i,900,900i'; } if ('off' !== $roboto) { $font_family[] = 'Roboto:100,300,300i,400,400i,500,500i,700,700i,900,900i'; } if ('off' !== $lato) { $font_family[] = 'Lato:300,300i,400,400i,700,700i,900,900i'; } if ('off' !== $playfairdisplay) { $font_family[] = 'Playfair Display:400,400i,700,700i,900,900i'; } if ('off' !== $assistant) { $font_family[] = 'Assistant:200,300,400,600,700,800'; } $query_args = array( 'family' => urlencode(implode('|', $font_family)) , ); $font_url = add_query_arg($query_args, '//fonts.googleapis.com/css'); } return $font_url; } /** * Enqueue scripts and styles. */ function library_books_scripts() { wp_enqueue_style('library-books-font', library_books_font_url() , array()); wp_enqueue_style('library-books-basic-style', get_stylesheet_uri()); wp_enqueue_style('library-books-print-style', get_template_directory_uri() . "/print.css"); wp_enqueue_style('nivo-slider', get_template_directory_uri() . "/css/nivo-slider.css"); wp_enqueue_style('font-awesome', get_template_directory_uri() . "/css/font-awesome.css"); wp_enqueue_style('library-books-main-style', get_template_directory_uri() . "/css/responsive.css"); wp_enqueue_style('library-books-base-style', get_template_directory_uri() . "/css/style_base.css"); wp_enqueue_script('jquery-nivo', get_template_directory_uri() . '/js/jquery.nivo.slider.js', array( 'jquery' )); wp_enqueue_script('library-books-custom-js', get_template_directory_uri() . '/js/custom.js'); if (is_singular() && comments_open() && get_option('thread_comments')) { wp_enqueue_script('comment-reply'); } } add_action('wp_enqueue_scripts', 'library_books_scripts'); define('LIBRARY_BOOKS_URL', 'https://www.pinnaclethemes.net/'); define('LIBRARY_BOOKS_PRO_THEME_URL', 'https://www.pinnaclethemes.net/product/library-wordpress-theme/'); define('LIBRARY_BOOKS_FREE_THEME_URL', 'https://www.pinnaclethemes.net/product/free-bookstore-wordpress-theme/'); define('LIBRARY_BOOKS_THEME_DOC', 'https://pinnaclethemes.net/themedocumentation/library-documentation/'); define('LIBRARY_BOOKS_LIVE_DEMO', 'https://www.pinnaclethemes.net/themedemos/librarybooks/'); define('LIBRARY_BOOKS_THEMES', 'https://www.pinnaclethemes.net/cool-wordpress-themes/'); /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.php'; /** * Custom template for about theme. */ require get_template_directory() . '/inc/about-themes.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/extras.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Add a pingback url auto-discovery header for singularly identifiable articles. */ function library_books_pingback_header() { if (is_singular() && pings_open()) { printf( '' . "\n", esc_html(get_bloginfo( 'pingback_url' ) )); } } add_action('wp_head', 'library_books_pingback_header'); // Add class in body if slide option enable function library_books_body_class( $classes ) { $hideslide = get_theme_mod('hide_slides', 1); if (!is_home() && is_front_page()) { if( $hideslide == '') { $classes[] = 'visibleslide'; } } return $classes; } add_filter( 'body_class','library_books_body_class' ); // get slug by id function library_books_get_slug_by_id($id) { $post_data = get_post($id, ARRAY_A); $slug = $post_data['post_name']; return $slug; } require_once get_template_directory() . '/upgrade-pro/example-1/class-customize.php'; /** * Filter the except length to 20 words. * * @param int $length Excerpt length. * @return int (Maybe) modified excerpt length. */ function library_books_custom_excerpt_length( $excerpt_length ) { return 20; } add_filter( 'excerpt_length', 'library_books_custom_excerpt_length', 999 );{"id":1534,"date":"2022-07-08T19:39:53","date_gmt":"2022-07-08T19:39:53","guid":{"rendered":"https:\/\/booksbypatricksimpson.com\/?p=1534"},"modified":"2022-07-08T19:57:20","modified_gmt":"2022-07-08T19:57:20","slug":"village-times-july-2022","status":"publish","type":"post","link":"https:\/\/booksbypatricksimpson.com\/village-times-july-2022\/","title":{"rendered":"Village Times July 2022"},"content":{"rendered":"\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"\"\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t

THE VILLAGE TIMES<\/h1>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t

Independence Village of Olde Raleigh\nResident Newsletter<\/h2>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"\"\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"\"\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
<\/div>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t

WRITERS CORNER<\/h2>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t\t\t

My Favorite Song \u2013 by Richard Smalto<\/b><\/p>

When I thought about selecting a song I enjoyed listening to more than any other I realized it was an improbable task. There are simply too many delightful musical arrangements to choose from.\u00a0 The problem is compounded when you realize you have to provide an appropriate reason for your choice. There are so many fond memories associated with so many marvelous songs there is no reasonable explanation for why I would select just one.\u00a0\u00a0<\/span><\/p>

What if I could select a favorite song to help me make another choice however. A song and a setting that illustrates the point that helped me decide which choice I should make. If someone asked me to tell them who I thought was a better dancer Gene Kelly or Fred Astaire, most people my age would say choosing between the two would be a difficult thing to do.\u00a0<\/span><\/p>

Kelly was muscular and athletic; Astaire lean and lithe. Kelly\u2019s performance of Singing in the Rain in the movie American in Paris is still considered the best dance routine in film; better than Travolta in Grease and better than the choreography in the final scene from the movie Dirty Dancing.\u00a0<\/span><\/p>

\u00a0I think Fred Astaire was the best. I think he was the best because his awestruck partners always ended up looking better after their dance routine was over. To illustrate my point I have picked one of my favorite songs he danced to with Cyd Charisse. The song is Dancing in the Dark; the setting was in the movie the Band Wagon.\u00a0 He may have danced more energetically with Eleanor Parker in \u2018To Begin the Beguine\u2019 or debonairly by himself in \u2018Putting on the Ritz\u2019 and arguably better than ever, with Ginger Rodgers, in all the movies they made together but the performance that proves my point is the one cited above.\u00a0 When the dance begins, his partner, Cyd Charisse, a fabulous long-legged dancer herself, awestruck by whom she is with and dumbfounded by what she is supposed to do stumbles awkwardly through her movements. As the routine continues however and they dance together you become transfixed by the fluidity of her motions and the grace of her movements.<\/span><\/p>

Quotes from our furry friends \u2013 by Margie Lewin<\/b><\/p>

  • Purring is an automatic safety valve device for dealing with happiness overflow.<\/span><\/li>
  • A dog is a bundle of pure love gift-wrapped<\/span><\/li>
  • Dogs never fake or lie about their love for you; it’s either there or it’s not.<\/span><\/li>
  • Way down deep, we are all motivated by the same urges. Cats the courage to live by them.\u00a0<\/span><\/li>
  • Be the person your pet thinks you are.<\/span><\/li>
  • Cats seem to go on the principle that it never does any harm to ask for what you want.\u00a0<\/span><\/li>
  • When you truly love a dog, you know that their only fault is that their lives are too short.<\/span><\/li>
  • It’s just the most amazing thing to love a dog, isn’t it? It makes our relationships with \u00a0 \u00a0 \u00a0 people seem as boring as a bowl of cereal.<\/span><\/li><\/ul>
    • It is in the nature of cats to do a certain amount of unescorted roaming.<\/span><\/li>
    • Most beds sleep up to six cats. Ten cats without the owner.<\/span><\/li><\/ul>

      This is me \u2013 by Phyllis Woolley<\/b><\/p>

      It\u2019s\u00a01:33 A.M.\u00a0and I am sitting here in my chair. The TV is on, but I don\u2019t really hear it. My cat Eevee is sleeping in my lap. She purrs softly and occasionally looks up at me as if to ask \u201cwhen are you going to bed, mom?\u201d I did try to go to bed, but I couldn\u2019t slow my mind down. I was thinking about my day and accepting the fact that I hadn\u2019t finished only half of the things I had planned for yesterday. How in the world was I going to catch up today?\u00a0<\/span><\/p>

      You see, I am one of those people who has difficulty telling someone \u201cNo\u201d. Such a simple little word consisting of a mere two letters. \u00a0A vowel and a consonant. One syllable. It\u2019s much more difficult to say at times than supercalifragilisticexpialidocious!\u00a0<\/span><\/p>

      Many times my plan for the day is to say \u201cno\u201d when asked to do something I truly don\u2019t have time to do. When someone says \u201cwill you?\u201d, or \u201ccan you\u201d I am sure I am saying \u201cno\u201d, but I hear my mouth say \u201cyes\u201d.\u00a0<\/span><\/p>

      I have also learned something else about myself. If I am going to do something, I am going to do it my way. My way is to follow the rules and not go by what always was. When there is no written rule to apply to the situation, I attempt to figure out what is best for everybody concerned. Now this doesn\u2019t always make everyone happy. At that point, another of my traits takes over. I am true to my astrological sign. I am a Taurus, and stubborn as a bull. I will patiently listen to your side, and it better be good, or I will continue with my way. I will allow you the task of taking over and doing something your way, but to date, I have had no takers!<\/span><\/p>

      One other thing. I respect authority. Therefore, I follow the rule of authority. That is, until I can diplomatically change the mind of the person in charge.\u00a0<\/span><\/p>

      Time to go back to bed!<\/span><\/i><\/p>

      What is that sound? \u2013 by Carol Armstrong<\/b><\/p>

      What is that sound?<\/span><\/p>

      \u00a0\u00a0\u00a0I hear it from outside and far away,<\/span><\/p>

      \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0always the same night and day.<\/span><\/p>

      Is it a plane?<\/span><\/p>

      \u00a0\u00a0\u00a0The roar of a plane comes softly, gets louder,<\/span><\/p>

      \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0then softer, then goes away.<\/span><\/p>

      \u00a0\u00a0\u00a0My sound does not roar or come and go.<\/span><\/p>

      \u00a0\u00a0\u00a0It is not a plane, I know.<\/span><\/p>

      Is it a train?<\/span><\/p>

      \u00a0\u00a0\u00a0The sound of a train is the clickety-clack of wheels<\/span><\/p>

      \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0on the track.<\/span><\/p>

      \u00a0\u00a0\u00a0It comes and goes, and in between, the whistle blows.<\/span><\/p>

      \u00a0\u00a0\u00a0My sound does not come and go, and I do not<\/span><\/p>

      \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0hear a whistle blow.<\/span><\/p>

      \u00a0\u00a0\u00a0It is not a train, I know.<\/span><\/p>

      Is it rain?<\/span><\/p>

      \u00a0\u00a0\u00a0When rain fall softly and gently or hard and heavy,<\/span><\/p>

      \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0it makes different sounds, as it hits trees and<\/span><\/p>

      \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0roofs and falls to the ground.\u00a0<\/span><\/p>

      \u00a0\u00a0\u00a0When the sky is dark with clouds, the rain will fall.<\/span><\/p>

      \u00a0\u00a0\u00a0When the sky is blue, there is no rain at all.<\/span><\/p>

      \u00a0\u00a0\u00a0My sound is always the same, and does not come and go.\u00a0<\/span><\/p>

      \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0It is not rain, I know.<\/span><\/p>

      \u00a0\u00a0What is that sound from outside and far away,<\/span><\/p>

      \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0always the same night and day?<\/span><\/p>

      \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0I do not know.\u00a0<\/span><\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t

      \n\t\t\t\t\t\t
      \n\t\t\t\t\t
      \n\t\t\t
      \n\t\t\t\t\t\t
      \n\t\t\t\t
      \n\t\t\t\t\t\t\t

      It’s impossible \u2013 by Pat Simpson<\/b><\/p>

      to learn to plow by reading books\u00a0<\/span><\/p>

      to sneeze with your eyes open<\/span><\/p>

      to ask a baby not to cry<\/span><\/p>

      to keep the ocean from rushing to the shore<\/span><\/p>

      to tell the sun to leave the sky<\/span><\/p>

      to give a girl too many flowers.<\/span><\/p>

      Said no one ever\u2026!<\/span><\/p>

      “I LOVE smelly shoes.”<\/span><\/p>

      \u201cI wish weekends never existed.\u2019<\/span><\/p>

      “This lettuce sure beats having cake!”<\/span><\/p>

      \u201cI absolutely hate chocolate.\u2019<\/span><\/p>

      \u201cLet\u2019s make COVID great again.\u201d<\/span><\/p>

      \u201cLet’s try to catch COVID again.\u201d<\/span><\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t

      \n\t\t\t
      \n\t\t\t\t\t\t
      \n\t\t\t\t
      \n\t\t\t\t\t\t\t\t\t\t\t\t\t\"\"\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
      \n\t\t\t\t\t\t
      \n\t\t\t\t\t
      \n\t\t\t
      \n\t\t\t\t\t\t
      \n\t\t\t\t
      \n\t\t\t\t\t\t\t\t\t\t\t\t\t\"\"\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
      \n\t\t\t\t\t\t
      \n\t\t\t\t\t
      \n\t\t\t
      \n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t
      \n\t\t\t
      \n\t\t\t\t\t\t
      \n\t\t\t\t
      \n\t\t\t\t\t\t\t

      Salon \u2013 Hair Stylist<\/strong><\/span><\/h2>

      Belinda Wright
      Wednesdays 9am\u20133pm
      #617-416-5705<\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t

      \n\t\t\t
      \n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
      \n\t\t\t\t\t\t
      \n\t\t\t\t\t
      \n\t\t\t
      \n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t
      \n\t\t\t
      \n\t\t\t\t\t\t
      \n\t\t\t\t
      \n\t\t\t\t\t\t\t

      Transportation Days:<\/strong><\/span><\/h2>

      Tuesday & Friday: Harris Teeter Trips
      Wednesday & Thursday: Medical Trips<\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t

      \n\t\t\t
      \n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
      \n\t\t\t\t\t\t
      \n\t\t\t\t\t
      \n\t\t\t
      \n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t
      \n\t\t\t
      \n\t\t\t\t\t\t
      \n\t\t\t\t
      \n\t\t\t\t\t\t\t

      Store Hours<\/strong><\/span><\/h2>

      Monday, Wednesday, Friday
      10am to 11am\u00a0<\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t

      \n\t\t\t
      \n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
      \n\t\t\t\t\t\t
      \n\t\t\t\t\t
      \n\t\t\t
      \n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t
      \n\t\t\t
      \n\t\t\t\t\t\t
      \n\t\t\t\t
      \n\t\t\t\t\t\t\t

      Dining Room Hours<\/strong><\/span><\/h2>

      Breakfast: 7am to 8:15 am
      Lunch: 11am to 12:15pm
      Supper: 4pm to 5pm\u00a0<\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t

      \n\t\t\t
      \n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
      \n\t\t\t\t\t\t
      \n\t\t\t\t\t
      \n\t\t\t
      \n\t\t\t\t\t\t
      \n\t\t\t\t
      \n\t\t\t\t\t
      \n\t\t\t\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"

      THE VILLAGE TIMES Independence Village of Olde Raleigh Resident Newsletter WRITERS CORNER My Favorite Song \u2013 by Richard Smalto When I thought about selecting a song I enjoyed listening to more than any other I realized it was an improbable task. There are simply too many delightful musical arrangements to choose from.\u00a0 The problem is […]<\/a><\/p>\n","protected":false},"author":1,"featured_media":1536,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"pgc_meta":"","footnotes":""},"categories":[1],"tags":[],"class_list":["post-1534","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/posts\/1534","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/comments?post=1534"}],"version-history":[{"count":11,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/posts\/1534\/revisions"}],"predecessor-version":[{"id":1550,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/posts\/1534\/revisions\/1550"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/media\/1536"}],"wp:attachment":[{"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/media?parent=1534"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/categories?post=1534"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/tags?post=1534"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}