Title: KimbWordPress's Replies | WordPress.org

---

# KimbWordPress

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Sticky Post shows title as link ONLY not the entire post](https://wordpress.org/support/topic/sticky-post-shows-title-as-link-only-not-the-entire-post/)
 *  Thread Starter [KimbWordPress](https://wordpress.org/support/users/kimbwordpress/)
 * (@kimbwordpress)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/sticky-post-shows-title-as-link-only-not-the-entire-post/#post-4607886)
 * I’m closing this query and starting another because the issue is different. Thanks.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Sticky Post shows title as link ONLY not the entire post](https://wordpress.org/support/topic/sticky-post-shows-title-as-link-only-not-the-entire-post/)
 *  Thread Starter [KimbWordPress](https://wordpress.org/support/users/kimbwordpress/)
 * (@kimbwordpress)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/sticky-post-shows-title-as-link-only-not-the-entire-post/#post-4607877)
 * SO NOW…I successfully removed category titles and—without doing ANYTHING ELSE—
   mediareportcard.com is now acting like the VCmonterey.org site. EXACTLY WHAT 
   I DO NOT WANT.
 * Here is the area in featured-content.php, that I think can be changed to STOP
   WordPress from posting sticky posts as featured when featured posts are not available.
   Any advice on how to change this would be appreciated:
 * /**
    * Get featured post IDs * * This function will return the an array containing
   the * post IDs of all featured posts. * * Sets the “featured_content_ids” transient.**
   [@static](https://wordpress.org/support/users/static/) * [@access](https://wordpress.org/support/users/access/)
   public * [@since](https://wordpress.org/support/users/since/) Twenty Fourteen
   1.0 * * [@return](https://wordpress.org/support/users/return/) array Array of
   post IDs. */ public static function get_featured_post_ids() { // Return array
   of cached results if they exist. $featured_ids = get_transient( ‘featured_content_ids’);
   if ( ! empty( $featured_ids ) ) { return array_map( ‘absint’, (array) $featured_ids);}
 *  $settings = self::get_setting();
 *  // Return sticky post ids if no tag name is set.
    $term = get_term_by( ‘name’,
   $settings[‘tag-name’], ‘post_tag’ ); if ( $term ) { $tag = $term->term_id; } 
   else { return self::get_sticky_posts(); }
 *  // Query for featured posts.
    $featured = get_posts( array( ‘numberposts’ =>
   $settings[‘quantity’], ‘tax_query’ => array( array( ‘field’ => ‘term_id’, ‘taxonomy’
   => ‘post_tag’, ‘terms’ => $tag, ), ), ) );
 *  // Return array with sticky posts if no Featured Content exists.
    if ( ! $featured){
   return self::get_sticky_posts(); }
 *  // Ensure correct format before save/return.
    $featured_ids = wp_list_pluck((
   array) $featured, ‘ID’ ); $featured_ids = array_map( ‘absint’, $featured_ids );
 *  set_transient( ‘featured_content_ids’, $featured_ids );
 *  return $featured_ids;
    }
 *  /**
    * Return an array with IDs of posts marked as sticky. * * [@static](https://wordpress.org/support/users/static/)*
   [@access](https://wordpress.org/support/users/access/) public * [@since](https://wordpress.org/support/users/since/)
   Twenty Fourteen 1.0 * * [@return](https://wordpress.org/support/users/return/)
   array Array of sticky posts. */ public static function get_sticky_posts() { $
   settings = self::get_setting(); return array_slice( get_option( ‘sticky_posts’,
   array() ), 0, $settings[‘quantity’] ); }
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Twenty Fourteen Remove Category Names above Titles](https://wordpress.org/support/topic/twenty-fourteen-remove-category-names-above-titles/)
 *  Thread Starter [KimbWordPress](https://wordpress.org/support/users/kimbwordpress/)
 * (@kimbwordpress)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/twenty-fourteen-remove-category-names-above-titles/#post-4608735)
 * That didn’t work, but it provided me with the clues to go here and get it to 
   work, so THANKS SO MUCH!!!:
 * }
 * .featured-content .cat-links {
    font-weight: 700; display: none; }
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Sticky Post shows title as link ONLY not the entire post](https://wordpress.org/support/topic/sticky-post-shows-title-as-link-only-not-the-entire-post/)
 *  Thread Starter [KimbWordPress](https://wordpress.org/support/users/kimbwordpress/)
 * (@kimbwordpress)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/sticky-post-shows-title-as-link-only-not-the-entire-post/#post-4607809)
 * I still don’t understand why they both do no work the same way. I prefer the 
   way the mediareportcard site presents stick posts.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Sticky Post shows title as link ONLY not the entire post](https://wordpress.org/support/topic/sticky-post-shows-title-as-link-only-not-the-entire-post/)
 *  Thread Starter [KimbWordPress](https://wordpress.org/support/users/kimbwordpress/)
 * (@kimbwordpress)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/sticky-post-shows-title-as-link-only-not-the-entire-post/#post-4607803)
 * Okay so it says here:
 * [http://codex.wordpress.org/Twenty_Fourteen](http://codex.wordpress.org/Twenty_Fourteen)
 * That if no post is FEATURED, then a stick post will be featured. So it seems 
   the VCmonterey.org site is doing that, but my other sites are NOT doing that.
 * Go figure.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Sticky Post shows title as link ONLY not the entire post](https://wordpress.org/support/topic/sticky-post-shows-title-as-link-only-not-the-entire-post/)
 *  Thread Starter [KimbWordPress](https://wordpress.org/support/users/kimbwordpress/)
 * (@kimbwordpress)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/sticky-post-shows-title-as-link-only-not-the-entire-post/#post-4607799)
 * Thanks. Yes, I know how the featured tag works. I pick and choose which posts
   will be featured and I change them all of the time.
 * But on vcmonterey.org, when I don’t have any posted “featured” then it takes 
   the sticky post and formats it as a FEATURED post.
 * For example, if you go to MEDIAREPORTCARD.com, I have gotten rid of the 6 featured
   posts that use to be there. And the WELCOME TO “MEDIA REPORT CARD” BY KIMB post
   is STICKY so it stays at the top even when newer posts are added.
 * But when I remove all “featured” posts from vdmonterey.org, it takes the post
   I’ve marked as sticky and formats it like a “featured” post (even though I did
   not tag it as featured.)
 * It is as if the “sticky” code is mixed up.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Sticky Post shows title as link ONLY not the entire post](https://wordpress.org/support/topic/sticky-post-shows-title-as-link-only-not-the-entire-post/)
 *  Thread Starter [KimbWordPress](https://wordpress.org/support/users/kimbwordpress/)
 * (@kimbwordpress)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/sticky-post-shows-title-as-link-only-not-the-entire-post/#post-4607782)
 * Plus there is an odd space between the featured image and its title. You don’t
   see that on my other blogs (such as mediareportcard.com)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Sticky Post shows title as link ONLY not the entire post](https://wordpress.org/support/topic/sticky-post-shows-title-as-link-only-not-the-entire-post/)
 *  Thread Starter [KimbWordPress](https://wordpress.org/support/users/kimbwordpress/)
 * (@kimbwordpress)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/sticky-post-shows-title-as-link-only-not-the-entire-post/#post-4607780)
 * I don’t know. As long as I have a FEATURED post, then the WELCOME TO VELO CLUB(
   the post I’ve marked as sticky) behaves correctly. It stays on the page even 
   when I post something else (you’ll see the TEST post beneath it.) But when I 
   DO NOT have a featured post (like the Bike Shop above) then it behaves like a
   featured post NOT a sticky post.
 * So perhaps I just make sure I keep a featured post all the time so it will work
   correctly.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Sticky Post shows title as link ONLY not the entire post](https://wordpress.org/support/topic/sticky-post-shows-title-as-link-only-not-the-entire-post/)
 *  Thread Starter [KimbWordPress](https://wordpress.org/support/users/kimbwordpress/)
 * (@kimbwordpress)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/sticky-post-shows-title-as-link-only-not-the-entire-post/#post-4607779)
 * Strangely, it is treating STICKY like a featured post. Don’t know why.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Twenty Fourteen Primary Sidebar Appears at Bottom of Page](https://wordpress.org/support/topic/twenty-fourteen-primary-sidebar-appears-at-bottom-of-page/)
 *  Thread Starter [KimbWordPress](https://wordpress.org/support/users/kimbwordpress/)
 * (@kimbwordpress)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/twenty-fourteen-primary-sidebar-appears-at-bottom-of-page/#post-4505269)
 * It was due to screen settings. Thanks for helping out.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Twenty Fourteen Primary Sidebar Appears at Bottom of Page](https://wordpress.org/support/topic/twenty-fourteen-primary-sidebar-appears-at-bottom-of-page/)
 *  Thread Starter [KimbWordPress](https://wordpress.org/support/users/kimbwordpress/)
 * (@kimbwordpress)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/twenty-fourteen-primary-sidebar-appears-at-bottom-of-page/#post-4505077)
 * Thanks for checking. I’ll keep looking to see why mine isn’t presenting correctly.

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