__( 'Primary Navigation', 'CYSY Framework 3' ), ) ); // To display custom nav in theme use: //*** 'your_navigation_container', 'theme_location' => 'primary' ) ); ? > //.................. GIVE CUSTOM NAV MENU ABILITY FOR DESCRIPTIONS .................. // // CYSY Framework 3 Copyright(c) 2012-2013 - CYber SYtes, Inc. All Rights Reserved // To apply this to a theme simply add an item to the wp_nav_menu array like so: // 'navigation', // 'theme_location' => 'primary-menu', // 'walker' => $walker // )); // ? > class My_Walker extends Walker_Nav_Menu { function start_el(&$output, $item, $depth, $args) { global $wp_query; $indent = ( $depth ) ? str_repeat( "\t", $depth ) : ''; $class_names = $value = ''; $classes = empty( $item->classes ) ? array() : (array) $item->classes; $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item ) ); $class_names = ''; $output .= $indent . '
  • id="li-comment-">
    says:', 'CYSY Framework 3' ), sprintf( '%s', get_comment_author_link() ) ); ?>
    comment_approved == '0' ) : ?>
    $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
  • __( 'Primary Widget Area', 'CYSY Framework 3' ), 'id' => 'primary-widget-area', 'description' => __( 'The primary widget area', 'CYSY Framework 3' ), 'before_widget' => '
  • ', 'after_widget' => '
  • ', 'before_title' => '

    ', 'after_title' => '

    ', ) ); // Area 2, located below the Primary Widget Area in the sidebar. Empty by default. register_sidebar( array( 'name' => __( 'Secondary Widget Area', 'CYSY Framework 3' ), 'id' => 'secondary-widget-area', 'description' => __( 'The secondary widget area', 'CYSY Framework 3' ), 'before_widget' => '
  • ', 'after_widget' => '
  • ', 'before_title' => '

    ', 'after_title' => '

    ', ) ); /** * Removes the default styles that are packaged with the Recent Comments widget. * * To override this in a child theme, remove the filter and optionally add your own * function tied to the widgets_init action hook. * */ function framework_remove_recent_comments_style() { global $wp_widget_factory; remove_action( 'wp_head', array( $wp_widget_factory->widgets['WP_Widget_Recent_Comments'], 'recent_comments_style' ) ); } add_action( 'widgets_init', 'framework_remove_recent_comments_style' ); if ( ! function_exists( 'framework_posted_on' ) ) : /** * Prints HTML with meta information for the current post—date/time and author. * */ function framework_posted_on() { printf( __( 'Posted on %2$s by %3$s', 'CYSY Framework 3' ), 'meta-prep meta-prep-author', sprintf( '%3$s', get_permalink(), esc_attr( get_the_time() ), get_the_date() ), sprintf( '%3$s', get_author_posts_url( get_the_author_meta( 'ID' ) ), sprintf( esc_attr__( 'View all posts by %s', 'CYSY Framework 3' ), get_the_author() ), get_the_author() ) ); } endif; if ( ! function_exists( 'framework_posted_in' ) ) : /** * Prints HTML with meta information for the current post (category, tags and permalink). * */ function framework_posted_in() { // Retrieves tag list of current post, separated by commas. $tag_list = get_the_tag_list( '', ', ' ); if ( $tag_list ) { $posted_in = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the permalink.', 'CYSY Framework 3' ); } elseif ( is_object_in_taxonomy( get_post_type(), 'category' ) ) { $posted_in = __( 'This entry was posted in %1$s. Bookmark the permalink.', 'CYSY Framework 3' ); } else { $posted_in = __( 'Bookmark the permalink.', 'CYSY Framework 3' ); } // Prints the string, replacing the placeholders. printf( $posted_in, get_the_category_list( ', ' ), $tag_list, get_permalink(), the_title_attribute( 'echo=0' ) ); } endif; // Pull an image URL from the media gallery function sp_get_image($num = 0) { global $post; $children = get_children(array( 'post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC' )); $count = 0; foreach ((array)$children as $key => $value) { $images[$count] = $value; $count++; } if(isset($images[$num])) return wp_make_link_relative(wp_get_attachment_url($images[$num]->ID)); else return false; } /********************* THESE LINES OF CODE ARE FOR THE .htaccess file The first two lines of code are used to allow you to include .php files from outside of the /wordpress/ directory. The next two lines of code are used for increasing the upload sizes for media to wordpress. *** These lines below need to be added to the top of the .htaccess file that is in the root of the site. php_value allow_url_fopen on php_value allow_url_include on php_value post_max_size 8M php_value upload_max_filesize 8M */ /*** THIS MODIFIES THE ADMIN LOGIN SCREEN LOGO TO DISPLAY A CUSTOM LOGO FROM THE THEME DIRECTORY. add_filter( 'login_headerurl', 'namespace_login_headerurl' ); /** * Replaces the login header logo URL * * @param $url */ function namespace_login_headerurl( $url ) { $url = home_url( '/' ); return $url; } add_filter( 'login_headertitle', 'namespace_login_headertitle' ); /** * Replaces the login header logo title * * @param $title */ function namespace_login_headertitle( $title ) { $title = get_bloginfo( 'name' ); return $title; } add_action( 'login_head', 'namespace_login_style' ); /** * Replaces the login header logo */ function namespace_login_style() { echo ''; } // remove version info from head and feeds // for security buff function complete_version_removal() { return ''; } add_filter('the_generator', 'complete_version_removal'); // Reformatts dashboard to eliminate a lot of the annoying things our clients see first off. add_action('wp_dashboard_setup', 'my_custom_dashboard_widgets'); function my_custom_dashboard_widgets() { global $wp_meta_boxes; //Right Now - Comments, Posts, Pages at a glance //unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_right_now']); //Recent Comments //unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']); //Incoming Links unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']); //Plugins - Popular, New and Recently updated Wordpress Plugins unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']); //Wordpress Development Blog Feed unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']); //Other Wordpress News Feed unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']); //Quick Press Form //unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']); //Recent Drafts List //unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_recent_drafts']); } // remove unncessary header info in the of our sites function remove_header_info() { remove_action('wp_head', 'rsd_link'); remove_action('wp_head', 'wlwmanifest_link'); remove_action('wp_head', 'wp_generator'); remove_action('wp_head', 'start_post_rel_link'); remove_action('wp_head', 'index_rel_link'); remove_action('wp_head', 'adjacent_posts_rel_link'); } add_action('init', 'remove_header_info'); // remove extra css that recent comments widget injects function remove_recent_comments_style() { global $wp_widget_factory; remove_action('wp_head', array($wp_widget_factory->widgets['WP_Widget_Recent_Comments'], 'recent_comments_style')); } add_action('widgets_init', 'remove_recent_comments_style'); // this changes the footer in the admin section of wordpress function remove_footer_admin () { echo 'Site Developed by: CYber SYtes, Inc. Web SYtes by Design'; } add_filter('admin_footer_text', 'remove_footer_admin'); //this line of code removes the error messages above login screen if incorrect login is entered. // basically removes information hackers could use to know if they're having success. add_filter('login_errors',create_function('$a', "return null;")); //remove please update now link for clients, but keeps it live for admins if ( !current_user_can( 'edit_users' ) ) { remove_action('admin_notices','update_nag',3); } //remove links menu tab from wordpress installs, because we don't use them. function sb_remove_admin_menus(){ if ( function_exists('remove_menu_page') ) { remove_menu_page('link-manager.php'); // Remove the Links tab by providing its slug } } add_action('admin_menu', 'sb_remove_admin_menus'); ?>{"id":78095,"date":"2025-03-27T12:43:10","date_gmt":"2025-03-27T17:43:10","guid":{"rendered":"https:\/\/www.pars-co.net\/?p=78095"},"modified":"2025-03-27T13:12:19","modified_gmt":"2025-03-27T18:12:19","slug":"113-n-spring-street-pensacola-florida","status":"publish","type":"post","link":"https:\/\/www.pars-co.net\/113-n-spring-street-pensacola-florida\/","title":{"rendered":"113 N. Spring Street Pensacola, Florida"},"content":{"rendered":"

    \"parsco<\/p>\n

    ParsCo, LLC along with HBA West Florida<\/a> is proud to be a part of the meaningful initiative to build three affordable homes in the City of Pensacola<\/a>.<\/p>\n

    This affordable housing partnership is with the Northwest Florida Community Land Trust.<\/a><\/p>\n

    Thank you to all of our generous sponsors:<\/strong>
    \nMoorhead Law Group
    \nRew Materials
    \nBay Area Printing & Graphics
    \nPensacola Energy
    \nKJM Land Surveying
    \nGood Foundations, Inc.
    \nGene’s Floor Covering
    \nAdams Sanitation
    \nClear Title of Northwest Florida
    \nSwift Supply
    \naDoor Properties
    \nJohnson Electrical Services
    \nEmerald Coast Granite & Tile
    \nAggressive Plumbing Inc.
    \nKEC
    \nMoen
    \nAmerican\u00a0Concrete Supply
    \nPensacola Winsupply
    \nGrand Builders
    \nLoftis Marine Division
    \nHammond Engineering, Inc.
    \nInterior\/Exterior Building Supply
    \nRocky’s Termite & Pest Control, LLC
    \nConcrete Wall USA
    \nGuy Brothers Roofing & Siding
    \nNational Energy USA
    \nLS Harding Concrete, Inc.
    \nCabinets Direct Pensacola
    \nHancock Whitney
    \nEconomy Appliance Heat and Air
    \nRange Window and Door
    \nES<\/p>\n

    Northwest Florida Community Land Trust Homebuyer Applications Now Open!<\/h1>\n
    \n
    \n
    \n
    \n
    \n
    \n

    PENSACOLA, Fla. <\/strong>\u2013 Pensacola Habitat for Humanity announced that homebuyer applications are now open<\/a> for the Northwest Florida Community Land Trust (CLT), bringing another affordable homeownership solution to Escambia and Santa Rosa Counties.<\/p>\n

    \u00a0Each homeowner in the Community Land Trust will own their house but not the land on which the house sits. Instead, they will sign a 99-year ground lease for the land. Removing the cost of the land from the mortgage creates affordability for buyers as they build shared equity.<\/p>\n

    APPLY NOW<\/a><\/strong><\/p>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n

    <\/div>\n
    Questions? <\/strong>Contact Us<\/div>\n
    <\/div>\n
    <\/div>\n

    \n","protected":false},"excerpt":{"rendered":"

    ParsCo, LLC along with HBA West Florida is proud to be a part of the meaningful initiative to build three affordable homes in the City of Pensacola. This affordable housing partnership is with the Northwest Florida Community Land Trust. Thank you to all of our generous sponsors: Moorhead Law Group Rew Materials Bay Area Printing […]<\/p>\n","protected":false},"author":4,"featured_media":78096,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[16,22,8,15],"tags":[],"class_list":["post-78095","post","type-post","status-publish","format-standard","hentry","category-community","category-encore-homes","category-residential","category-team"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/www.pars-co.net\/wp-json\/wp\/v2\/posts\/78095","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.pars-co.net\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.pars-co.net\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.pars-co.net\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.pars-co.net\/wp-json\/wp\/v2\/comments?post=78095"}],"version-history":[{"count":3,"href":"https:\/\/www.pars-co.net\/wp-json\/wp\/v2\/posts\/78095\/revisions"}],"predecessor-version":[{"id":78099,"href":"https:\/\/www.pars-co.net\/wp-json\/wp\/v2\/posts\/78095\/revisions\/78099"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.pars-co.net\/wp-json\/wp\/v2\/media\/78096"}],"wp:attachment":[{"href":"https:\/\/www.pars-co.net\/wp-json\/wp\/v2\/media?parent=78095"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pars-co.net\/wp-json\/wp\/v2\/categories?post=78095"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pars-co.net\/wp-json\/wp\/v2\/tags?post=78095"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}