One of the many changes a woman experiences during pregnancy has to do with insulin sensitivity. According to the American Diabetes Association, insulin is responsible for helping the body turn food into fuel and, in turn, also helps manage blood sugar levels. In...
The postpartum period brings many changes—mental, emotional, and physical. After growing a tiny human for many months, your body begins to adjust to a whole new normal. While some changes are expected, others can catch new moms off guard. Postpartum hair loss is one...
Going through a miscarriage can be one of the most emotional and devastating experiences a woman can experience. The physical and emotional recovery from pregnancy loss takes time. Every woman’s healing journey is different. Nutrition can play a role in supporting...
Coffee is beloved worldwide for the energy boost and warmth it provides. For many expecting mothers, the rich flavor and aroma of coffee are deeply comforting; others might have an aversion to it altogether. However, high amounts of caffeine can be harmful to a...
Good nutrition is paramount to the health of the mother and her growing baby during pregnancy. While the goal is to meet as many needs as possible through food first, this can be a challenge, especially when battling nausea, aversions, and low appetite. Additionally,...
The Starbucks Pumpkin Spice Latte, affectionately known as the PSL, is a fall favorite for many. Its cozy blend of espresso, milk, pumpkin, and warm spices signals the official start of autumn each year. But if you’re pregnant (or trying to conceive), you might find...
/**
* Remove 'nofollow' from the cancel comment reply link ('.cancel-comment-reply-link').
*/
function my_remove_nofollow_cancel_link( $formatted_link, $link, $text ) {
// The cancel link typically uses double quotes for rel="nofollow"
return str_replace( 'rel="nofollow"', '', $formatted_link );
}
add_filter( 'cancel_comment_reply_link', 'my_remove_nofollow_cancel_link', 10, 3 );/**
* Remove 'nofollow' from the comment reply link ('.comment-reply-link').
*/
function my_remove_nofollow_reply_link( $link, $args, $comment, $post ) {
// The comment reply link can use single quotes for rel='nofollow'
return str_replace( "rel='nofollow'", '', $link );
}
add_filter( 'comment_reply_link', 'my_remove_nofollow_reply_link', 100, 4 );