__( '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":1742,"date":"2019-11-01T11:02:14","date_gmt":"2019-11-01T16:02:14","guid":{"rendered":"http:\/\/www.pars-co.net\/?p=1742"},"modified":"2019-11-01T11:02:14","modified_gmt":"2019-11-01T16:02:14","slug":"todays-visitors","status":"publish","type":"post","link":"https:\/\/www.pars-co.net\/todays-visitors\/","title":{"rendered":"Today’s Visitors"},"content":{"rendered":"

    \"Encore
    \nLook who stopped by our new homes at the Garden District Cottages<\/a> in Pensacola…<\/p>\n","protected":false},"excerpt":{"rendered":"

    Look who stopped by our new homes at the Garden District Cottages in Pensacola…<\/p>\n","protected":false},"author":4,"featured_media":1743,"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":[22,8],"tags":[],"class_list":["post-1742","post","type-post","status-publish","format-standard","hentry","category-encore-homes","category-residential"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/www.pars-co.net\/wp-json\/wp\/v2\/posts\/1742","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=1742"}],"version-history":[{"count":1,"href":"https:\/\/www.pars-co.net\/wp-json\/wp\/v2\/posts\/1742\/revisions"}],"predecessor-version":[{"id":1744,"href":"https:\/\/www.pars-co.net\/wp-json\/wp\/v2\/posts\/1742\/revisions\/1744"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.pars-co.net\/wp-json\/wp\/v2\/media\/1743"}],"wp:attachment":[{"href":"https:\/\/www.pars-co.net\/wp-json\/wp\/v2\/media?parent=1742"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pars-co.net\/wp-json\/wp\/v2\/categories?post=1742"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pars-co.net\/wp-json\/wp\/v2\/tags?post=1742"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}