Title: silvine's Replies | WordPress.org

---

# silvine

  [  ](https://wordpress.org/support/users/silvine/)

 *   [Profile](https://wordpress.org/support/users/silvine/)
 *   [Topics Started](https://wordpress.org/support/users/silvine/topics/)
 *   [Replies Created](https://wordpress.org/support/users/silvine/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/silvine/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/silvine/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/silvine/engagements/)
 *   [Favorites](https://wordpress.org/support/users/silvine/favorites/)

 Search replies:

## Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [My profile won't update](https://wordpress.org/support/topic/my-profile-wont-update/)
 *  Thread Starter [silvine](https://wordpress.org/support/users/silvine/)
 * (@silvine)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/my-profile-wont-update/#post-5514494)
 * My hosting company caches my site.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Genesis eNews Extended] Mailchimp not working](https://wordpress.org/support/topic/mailchimp-not-working-1/)
 *  Thread Starter [silvine](https://wordpress.org/support/users/silvine/)
 * (@silvine)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/mailchimp-not-working-1/#post-4835659)
 * Thanks
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Best way to name images before migrating a site](https://wordpress.org/support/topic/best-way-to-name-images-before-migrating-a-site/)
 *  Thread Starter [silvine](https://wordpress.org/support/users/silvine/)
 * (@silvine)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/best-way-to-name-images-before-migrating-a-site/#post-4286651)
 * Thanks
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Blog Title Appearing Twice in External Links](https://wordpress.org/support/topic/blog-title-appearing-twice-in-external-links/)
 *  Thread Starter [silvine](https://wordpress.org/support/users/silvine/)
 * (@silvine)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/blog-title-appearing-twice-in-external-links/#post-4181287)
 * Hi,
 * When I paste this link [http://workreadplay.com/marketing-on-vine/](http://workreadplay.com/marketing-on-vine/)
   into LinkedIn the issue occurs. It also occurs when I save this link to apps 
   like Pocket and Instapaper.
 * I use the Yoast SEO plugin. Could this cause this issue?
 * Thanks for the help.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Child Theme Doesn't Look Like Parent](https://wordpress.org/support/topic/theme-pocket-child-theme-doesnt-look-like-parent/)
 *  Thread Starter [silvine](https://wordpress.org/support/users/silvine/)
 * (@silvine)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/theme-pocket-child-theme-doesnt-look-like-parent/#post-4134296)
 * Ok, thanks anyway.
 *   Forum: [Your WordPress](https://wordpress.org/support/forum/your-wordpress/)
   
   In reply to: [Need a Second Opinion About my Blog](https://wordpress.org/support/topic/need-a-second-opinion-about-my-blog/)
 *  Thread Starter [silvine](https://wordpress.org/support/users/silvine/)
 * (@silvine)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/need-a-second-opinion-about-my-blog/#post-4088384)
 * Thanks
 *   Forum: [Your WordPress](https://wordpress.org/support/forum/your-wordpress/)
   
   In reply to: [Need a Second Opinion About my Blog](https://wordpress.org/support/topic/need-a-second-opinion-about-my-blog/)
 *  Thread Starter [silvine](https://wordpress.org/support/users/silvine/)
 * (@silvine)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/need-a-second-opinion-about-my-blog/#post-4088382)
 * Thanks for the feedback.
 * I changed the theme, reduced the image sizes and broke the text up.
 * I am working on a fix for the buttons.
 *   Forum: [Your WordPress](https://wordpress.org/support/forum/your-wordpress/)
   
   In reply to: [Need a Second Opinion About my Blog](https://wordpress.org/support/topic/need-a-second-opinion-about-my-blog/)
 *  Thread Starter [silvine](https://wordpress.org/support/users/silvine/)
 * (@silvine)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/need-a-second-opinion-about-my-blog/#post-4088236)
 * Sorry, my bad!
 * [http://www.workreadplay.com](http://www.workreadplay.com)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Need Help Setting up a Dated Archive](https://wordpress.org/support/topic/need-help-setting-up-a-dated-archive/)
 *  Thread Starter [silvine](https://wordpress.org/support/users/silvine/)
 * (@silvine)
 * [13 years ago](https://wordpress.org/support/topic/need-help-setting-up-a-dated-archive/#post-3943986)
 * Code below. That would be good but I’m only online a few months.
 *     ```
       <?php
   
       get_header(); ?>
   
       	<section id="primary" class="site-content">
       		<div id="content" role="main">
   
       <div id="container">
       	<div id="content" role="main">
   
       		<?php the_post(); ?>
       		<h1 class="entry-title"><?php the_title(); ?></h1>
   
       			 <?php wp_get_archives('type=alpha'); ?>
       		<ul>
       			<select name="archive-dropdown" onchange="document.location.href=this.options[this.selectedIndex].value;">
         			<option value=""><?php echo esc_attr( __( 'Select Month' ) ); ?></option>
         			<?php wp_get_archives( array( 'type' => 'monthly', 'format' => 'option', 'show_post_count' => 1 ) ); ?>
       		</select>
       		</ul>
   
       	</div><!-- #content -->
       </div><!-- #container -->
   
       <?php get_sidebar(); ?>
       <?php get_footer(); ?>
       <?php get_sidebar(); ?>
       <?php get_footer(); ?>
       ```
   

Viewing 9 replies - 1 through 9 (of 9 total)