I got my designer to create the RSS/ Facebook and Twitter icon on my site (https://jumpstarttutors.com) which unfortunately upon clicking does not direct me to the relevant link! Tried contacting the designer but to no avail. ANYONE can help?
the below code is what i see on my header.php. Am an absolute nut when it comes to such codes.
<?php
/**
* WARNING: This file is part of the core Genesis framework. DO NOT edit
* this file under any circumstances. Please do all modifications
* in the form of a child theme.
*
* Handles the header structure.
*
* @package Genesis
*/
do_action( ‘genesis_doctype’ );
do_action( ‘genesis_title’ );
do_action( ‘genesis_meta’ );
wp_head(); /** we need this for plugins **/
?>
<script type=”text/javascript” src=”https://use.typekit.com/gfs5ksu.js”></script>
<script type=”text/javascript”>try{Typekit.load();}catch(e){}</script>
</head>
<body <?php body_class(); ?>>
<?php
do_action( ‘genesis_before’ );
?>
<div id=”wrap”>
<?php
do_action( ‘genesis_before_header’ );
do_action( ‘genesis_header’ );
do_action( ‘genesis_after_header’ );
echo ‘<div id=”inner”>’;
genesis_structural_wrap( ‘inner’ );