This has something to do with the social buttons I added to the blog today. Probably I did something wrong because I can’t see the admin, rss feed and if someone writes a comment it’s like it it doesn’t work.
I added this code to the bottom of my functions.php to be able to display the social sharing buttons on the bottom of each post:
<?php function custom_social_media_links() { ?>
<div id="custom_social_media_links">
<div id="social_media_opening_line">Share this post:</div>
<a href="https://www.facebook.com/sharer.php?u=<?php the_permalink(); ?>&t=<?php the_title(); ?>" target="blank"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/social/facebook.jpg" alt="Share this article on Facebook" /></a>
<a href="https://twitter.com/home?status=<?php the_title(); ?> – <?php the_permalink(); ?>" title="Click to send this page to Twitter!" target="_blank"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/social/twitter.jpg" alt="Share this Article on Twitter" /></a>
<a href="https://www.stumbleupon.com/submit?url=<?php the_permalink() ?>&title=<?php the_title(); ?>" rel="nofollow"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/social/stumbleupon.jpg" alt="Add this Article to Stumbleupon" /></a>
<a href="https://del.icio.us/post?url=<?php the_permalink() ?>&title=<?php the_title(); ?>" rel="nofollow"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/social/delicious.jpg" alt="Add this Article to Del.icio.us" /></a>
<a href="https://digg.com/submit?phase=2&url=<?php the_permalink() ?>" rel="nofollow"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/social/digg.jpg" alt="Add this Article to Digg" /></a>
<a href="https://reddit.com/submit?url=<?php the_permalink() ?>&title=<?php the_title(); ?>" rel="nofollow"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/social/reddit.jpg" alt="Add this Article to Reddit" /></a>
<a href="https://www.myspace.com/Modules/PostTo/Pages/?u=<?php the_permalink(); ?>&t=<?php the_title(); ?>" rel="nofollow"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/social/myspace.jpg" alt="Add this Article to Myspace" /></a>
<a href="https://www.google.com/bookmarks/mark?op=edit&bkmk=<?php the_permalink(); ?>&title=<?php the_title(); ?>&annotation=<?php the_excerpt(); ?>" rel="nofollow"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/social/google.jpg" alt="Add this Article to Google" /></a>
<a href="mailto:blank?body=I thought you might be interested in <?php the_title(); ?>. You can view it at: <?php the_permalink() ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/social/mail.jpg" alt="Tell a Friend" /></a>
</div>
<?php } ?>
Did I write something wrong?