\" plugin_version.type = \"hidden\" form.appendChild(plugin_version) var wordpress_version = document.createElement(\"input\") wordpress_version.name = \"wordpress_version\" wordpress_version.id = \"wordpress_version\" wordpress_version.value = '$wp_version' wordpress_version.type = \"hidden\" form.appendChild(wordpress_version) } },200); "; } else { echo ''; } } else { echo ''; } } else { echo ""; return; } } } /** * Google analytics . */ function ga_footer() { if ( ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) { $banner_discarded_count = get_option( 'sm_beta_banner_discarded_count' ); if ( 1 === $banner_discarded_count || '1' === $banner_discarded_count ) { echo ''; } } } /** * Check if the requirements of the sitemap plugin are met and loads the actual loader * * @package sitemap * @since 4.0 */ function sm_setup() { $fail = false; // Check minimum PHP requirements, which is 5.2 at the moment. if ( version_compare( PHP_VERSION, '5.2', '<' ) ) { add_action( 'admin_notices', 'sm_add_php_version_error' ); $fail = true; } // Check minimum WP requirements, which is 3.3 at the moment. if ( version_compare( $GLOBALS['wp_version'], '3.3', '<' ) ) { add_action( 'admin_notices', 'sm_add_wp_version_error' ); $fail = true; } if ( ! $fail ) { require_once trailingslashit( dirname( __FILE__ ) ) . 'class-googlesitemapgeneratorloader.php'; } } /** * Adds a notice to the admin interface that the WordPress version is too old for the plugin * * @package sitemap * @since 4.0 */ function sm_add_wp_version_error() { /* translators: %s: search term */ echo '

' . esc_html( __( 'Your WordPress version is too old for XML Sitemaps.', 'google-sitemap-generator' ) ) . '
' . esc_html( sprintf( __( 'Unfortunately this release of Google XML Sitemaps requires at least WordPress %4$s. You are using WordPress %2$s, which is out-dated and insecure. Please upgrade or go to active plugins and deactivate the Google XML Sitemaps plugin to hide this message. You can download an older version of this plugin from the plugin website.', 'google-sitemap-generator' ), 'plugins.php?plugin_status=active', esc_html( $GLOBALS['wp_version'] ), 'http://www.arnebrachhold.de/redir/sitemap-home/', '3.3' ) ) . '

'; } /** * Adds a notice to the admin interface that the WordPress version is too old for the plugin * * @package sitemap * @since 4.0 */ function sm_add_php_version_error() { /* translators: %s: search term */ echo '

' . esc_html( __( 'Your PHP version is too old for XML Sitemaps.', 'google-sitemap-generator' ) ) . '
' . esc_html( sprintf( __( 'Unfortunately this release of Google XML Sitemaps requires at least PHP %4$s. You are using PHP %2$s, which is out-dated and insecure. Please ask your web host to update your PHP installation or go to active plugins and deactivate the Google XML Sitemaps plugin to hide this message. You can download an older version of this plugin from the plugin website.', 'google-sitemap-generator' ), 'plugins.php?plugin_status=active', PHP_VERSION, 'http://www.arnebrachhold.de/redir/sitemap-home/', '5.2' ) ) . '

'; } /** * Returns the file used to load the sitemap plugin * * @package sitemap * @since 4.0 * @return string The path and file of the sitemap plugin entry point */ function sm_get_init_file() { return __FILE__; } /** * Register beta user consent function. */ function register_consent() { if ( ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) { if ( is_user_logged_in() && current_user_can( 'manage_options' ) ) { if ( isset( $_POST['user_consent_yes'] ) ) { if (isset($_POST['user_consent_yesno_nonce_token']) && check_admin_referer('user_consent_yesno_nonce', 'user_consent_yesno_nonce_token')){ update_option( 'sm_user_consent', 'yes' ); } } if ( isset( $_POST['user_consent_no'] ) ) { if (isset($_POST['user_consent_yesno_nonce_token']) && check_admin_referer('user_consent_yesno_nonce', 'user_consent_yesno_nonce_token')){ update_option( 'sm_user_consent', 'no' ); } } if ( isset( $_GET['action'] ) ) { if ( 'no' === $_GET['action'] ) { if ( $_SERVER['QUERY_STRING'] ) { if( strpos( $_SERVER['QUERY_STRING'], 'google-sitemap-generator' ) ) { update_option( 'sm_show_beta_banner', 'false' ); $count = get_option( 'sm_beta_banner_discarded_count' ); if ( gettype( $count ) !== 'boolean' ) { update_option( 'sm_beta_banner_discarded_count', (int) $count + 1 ); } else { add_option( 'sm_beta_banner_discarded_on', gmdate( 'Y/m/d' ) ); update_option( 'sm_beta_banner_discarded_count', (int) 1 ); } GoogleSitemapGeneratorLoader::setup_rewrite_hooks(); GoogleSitemapGeneratorLoader::activate_rewrite(); } else { add_option( 'sm_beta_notice_dismissed_from_wp_admin', 'true' ); } } else { add_option( 'sm_beta_notice_dismissed_from_wp_admin', 'true' ); } } } if ( isset( $_POST['enable_updates'] ) ) { if (isset($_POST['enable_updates_nonce_token']) && check_admin_referer('enable_updates_nonce', 'enable_updates_nonce_token')){ if ( 'true' === $_POST['enable_updates'] ) { $auto_update_plugins = get_option( 'auto_update_plugins' ); if ( ! is_array( $auto_update_plugins ) ) { $auto_update_plugins = array(); } array_push( $auto_update_plugins, 'google-sitemap-generator/sitemap.php' ); update_option( 'auto_update_plugins', $auto_update_plugins ); } elseif ( 'false' === $_POST['enable_updates'] ) { update_option( 'sm_hide_auto_update_banner', 'yes' ); } } } /* if ( isset( $_POST['disable_plugin'] ) ) { if (isset($_POST['disable_plugin_sitemap_nonce_token']) && check_admin_referer('disable_plugin_sitemap_nonce', 'disable_plugin_sitemap_nonce_token')){ if ( strpos( $_POST['disable_plugin'], 'all_in_one' ) !== false ) { $default_value = 'default'; $aio_seo_options = get_option( 'aioseo_options', $default_value ); if ( $aio_seo_options !== $default_value ) { $aio_seo_options = json_decode( $aio_seo_options ); $aio_seo_options->sitemap->general->enable = 0; update_option( 'aioseo_options', json_encode( $aio_seo_options ) ); } } elseif( strpos( $_POST['disable_plugin'], 'wp-seo' ) !== false ) { $yoast_options = get_option( 'wpseo' ); $yoast_options['enable_xml_sitemap'] = false; update_option( 'wpseo', $yoast_options ); } } } */ } } $updateUrlRules = get_option('sm_options'); if(!isset($updateUrlRules['sm_b_rewrites2']) || $updateUrlRules['sm_b_rewrites2'] == false){ GoogleSitemapGeneratorLoader::setup_rewrite_hooks(); GoogleSitemapGeneratorLoader::activate_rewrite(); GoogleSitemapGeneratorLoader::activation_indexnow_setup(); if (isset($updateUrlRules['sm_b_rewrites2'])) { $updateUrlRules['sm_b_rewrites2'] = true; update_option('sm_options', $updateUrlRules); } else { $updateUrlRules['sm_b_rewrites2'] = true; add_option('sm_options', $updateUrlRules); update_option('sm_options', $updateUrlRules); } } if(isset($updateUrlRules['sm_links_page'] )){ $sm_links_page = intval($updateUrlRules['sm_links_page']); if($sm_links_page < 1000) { $updateUrlRules['sm_links_page'] = 1000; update_option('sm_options', $updateUrlRules); } } if(!isset($updateUrlRules['sm_b_activate_indexnow']) || $updateUrlRules['sm_b_activate_indexnow'] == false){ $updateUrlRules['sm_b_activate_indexnow'] = true; $updateUrlRules['sm_b_indexnow'] = true; update_option('sm_options', $updateUrlRules); } } function disable_plugins_callback(){ if (current_user_can('manage_options')) { check_ajax_referer('disable_plugin_sitemap_nonce', 'nonce'); $pluginList = sanitize_text_field($_POST['pluginList']); $pluginsToDisable = explode(',', $pluginList); foreach ($pluginsToDisable as $plugin) { if ($plugin === 'all-in-one-seo-pack/all_in_one_seo_pack.php') { /* all in one seo deactivation */ $aioseo_option_key = 'aioseo_options'; if ($aioseo_options = get_option($aioseo_option_key)) { $aioseo_options = json_decode($aioseo_options, true); $aioseo_options['sitemap']['general']['enable'] = false; update_option($aioseo_option_key, json_encode($aioseo_options)); } } if ($plugin === 'wordpress-seo/wp-seo.php') { /* yoast sitemap deactivation */ if ($yoast_options = get_option('wpseo')) { $yoast_options['enable_xml_sitemap'] = false; update_option('wpseo', $yoast_options); } } if ($plugin === 'jetpack/jetpack.php') { /* jetpack sitemap deactivation */ $modules_array = get_option('jetpack_active_modules'); if(is_array($modules_array)) { if (in_array('sitemaps', $modules_array)) { $key = array_search('sitemaps', $modules_array); unset($modules_array[$key]); update_option('jetpack_active_modules', $modules_array); } } } if ($plugin === 'wordpress-sitemap') { /* Wordpress sitemap deactivation */ $options = get_option('sm_options', array()); if (isset($options['sm_wp_sitemap_status'])) $options['sm_wp_sitemap_status'] = false; else $options['sm_wp_sitemap_status'] = false; update_option('sm_options', $options); } } echo 'Plugins sitemaps disabled successfully'; wp_die(); } } function conflict_plugins_admin_notice(){ GoogleSitemapGeneratorLoader::create_notice_conflict_plugin(); } /* send to index updated url */ function indexnow_after_post_save($new_status, $old_status, $post) { $indexnow = get_option('sm_options'); $indexNowStatus = isset($indexnow['sm_b_indexnow']) ? $indexnow['sm_b_indexnow'] : false; if ($indexNowStatus === true) { $newUrlToIndex = new GoogleSitemapGeneratorIndexNow(); $is_changed = false; $type = "add"; if ($old_status === 'publish' && $new_status === 'publish') { $is_changed = true; $type = "update"; } else if ($old_status != 'publish' && $new_status === 'publish') { $is_changed = true; $type = "add"; } else if ($old_status === 'publish' && $new_status === 'trash') { $is_changed = true; $type = "delete"; } if ($is_changed) $newUrlToIndex->start(get_permalink($post)); } } // Don't do anything if this file was called directly. if ( defined( 'ABSPATH' ) && defined( 'WPINC' ) && ! class_exists( 'GoogleSitemapGeneratorLoader', false ) ) { sm_setup(); if(isset(get_option('sm_options')['sm_wp_sitemap_status']) ) $wp_sitemap_status = get_option('sm_options')['sm_wp_sitemap_status']; else $wp_sitemap_status = true; if($wp_sitemap_status = true) $wp_sitemap_status = '__return_true'; else $wp_sitemap_status = '__return_false'; add_filter( 'wp_sitemaps_enabled', $wp_sitemap_status ); add_action('wp_ajax_disable_plugins', 'disable_plugins_callback'); add_action('admin_notices', 'conflict_plugins_admin_notice'); } Effect – Affiliate Marketing Programs | CBOMO.COM https://cbomo.com Your Affiliate Online Money Opportunities Sat, 13 May 2023 20:59:29 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 Tips for minimizing wet soil’s effect on vegetable gardens https://cbomo.com/70202722007-2/ https://cbomo.com/70202722007-2/#respond Sat, 13 May 2023 20:59:29 +0000 https://cbomo.com/70202722007-2/ [ad_1]

Working in wet soils can cause damage to soil structure and soil quality that can negatively affect crop yield for years.

Like farmers, vegetable gardeners sometimes work in the rain in spring in order to get their favorite seeds and plants in the ground on a timely basis. In a wet spring, when repeated rainfall events do not allow for soils to dry out in a timely manner, some farmers and vegetable gardeners choose to plant in saturated soils. Farmers call this practice “mudding the crop in.” Unfortunately, working in wet soils can cause damage to soil structure and soil quality that can negatively affect crop yield for years.

Ask the Expert:What is the best way to control moss in your lawn?

Pore space critical to healthy soil

Healthy, well-functioning soil should contain 50% pore space by volume in order to hold moisture, oxygen and other gases. The other 50% of soil is made up of mineral particles (45%) and organic matter (5%). Pore space is critical for drainage, moisture retention, nutrient availability and proper root development.

When gardeners work wet soils, they can easily compact soils, eliminating critical pore space. While it is easy to understand how heavy power garden equipment such as tractors and tillers can compact wet soils, the very act of a gardener walking on wet soil can cause compaction. When compacted soil dries out, the mineral particles and organic matter remain cemented together, and the pore space does not return.

The negative effects of soil compaction tend to be more pronounced on heavier clay and shale-based soils, than on lighter soils, which have a greater proportion of sand particles. The loss of pore space affects the ability of soils to drain properly and store moisture and oxygen. Compacted soils also make it more difficult for roots to penetrate the soil and develop extensive root systems needed for maximum growth and production.

More from Mike Hogan:These deer deterrents can lessen damage to your vegetables and flowers

Organic matter important

The negative effects of compacted soils can be minimized by the presence of higher levels of organic matter in the soil. Depending upon location and how soils have been managed, native soils in Greater Columbus may have just 1 to 3% organic matter. Anything a gardener can do to add organic matter to their garden soil will provide a multitude of benefits. Examples of appropriate sources of organic matter include compost, wood chips, paper and cardboard, straw, livestock manure and cover crops. Gardeners interested in knowing the level of organic matter in their soil can have their soil tested for organic matter.

Mike Hogan

Wet soils in raised beds

One of the benefits of gardening in raised beds is that foot traffic is eliminated in the bed, allowing gardeners to work in wet soils without the threat of compacting the soil. That is one reason why raised beds should never be more than 48 inches wide, allowing gardeners to perform all tasks in the bed while standing outside of the bed. Raised beds designed for youth should be no more than 36 inches wide to allow smaller children to perform gardening tasks without standing in the bed.

When faced with the choice of working saturated soils or delaying planting, gardeners should opt to wait out the weather and stay off wet soil.

Mike Hogan is an Extension educator, Agriculture and Natural Resources, and associate professor with Ohio State University Extension. hogan.1@osu.edu

[ad_2]

Source link

]]>
https://cbomo.com/70202722007-2/feed/ 0
The Ripple Effect of a Bad Boss on Dual-Career Parents https://cbomo.com/the-ripple-effect-of-a-bad-boss-on-dual-career-parents/ https://cbomo.com/the-ripple-effect-of-a-bad-boss-on-dual-career-parents/#respond Sat, 15 Apr 2023 08:07:07 +0000 https://cbomo.com/the-ripple-effect-of-a-bad-boss-on-dual-career-parents/ [ad_1]

It’s no secret that a supportive boss can play an instrumental role in your ability to thrive both at work and at home. In this piece, the authors take this finding one step further. Their research highlights how your boss can also indirectly influence your co-parent’s ability to thrive as well. While it may not always be an option to choose your supervisor, by understanding how this process unfolds, you can take steps to more consciously navigate complex work, parenting, and partnership decisions to maximize opportunities for both you and your co-parent to thrive in all facets of life.

A recent Washington Post article highlighted a seemingly obvious, yet critically important finding from research conducted by Maureen Perry-Jenkins: When parents work in more supportive environments, they are able to be more effective in their parenting roles. This, in turn, leads to better developmental outcomes for their children. It’s no surprise that this news article quickly made the rounds across social media for parents — it articulates what so many working parents have felt: that our experiences at work shape the experiences of our home lives.

While writing Parents Who Lead, one of us (Alyssa) heard countless examples of dual-career parents who described the invasive, negative impact that an unsupportive work environment (think micromanaging boss, lack of family-supportive policies, presenteeism culture) can have on the entire family. It was common to hear one parent complain about their partner’s work and how carrying the resulting extra burden at home meant that they couldn’t fully engage at work themselves. And, happily, we also heard the positive flip side of this story. When one parent was meaningfully supported at work, their co-parent felt better able to fully show up as a parent and in their own career.

As a team of researchers and working parents ourselves, we set out to investigate this question: How does our co-parent’s support (or lack thereof) in the work environment influence our ability to thrive at home and at work?

To answer this question, we identified 100 dual-career couples with children and surveyed them at multiple time points over a year and a half during the pandemic. We asked each parent to tell us about the extent to which their work environment was supportive of their lives outside of work. We asked these questions about several facets of the work environment — their direct supervisor, their coworkers, and the broader organizational culture. We also asked both parents about their home lives, including the extent to which their partner was a supportive co-parent. Finally, we asked them to describe the degree to which they felt that they were thriving at work and at home. From an academic perspective, thriving is defined as two distinct but related psychological states — vitality and learning. When you thrive, you feel energized, enthusiastic, and a sense of continuous growth and learning. Beyond merely surviving, we wanted to know why some working parents were able to thrive (especially during the pandemic, which placed immense pressure on the family system).

What we found supported our initial supposition that when one co-parent has a supportive work environment, it makes it significantly more likely that their co-parent will be able thrive both at home and in their own careers. Diving deeper into the data yielded some fascinating findings.

First, we found that not all types of support at work are equally important. The supportiveness of one’s supervisor was significantly more impactful on both the co-parent and their partner than other forms of support at work (either from coworkers or the organizational culture, more broadly). In other words, even after controlling for the supportiveness of your own boss, the supportiveness of your co-parent’s boss affects how likely you are to thrive at work and home.

Second, as organizational psychologists, we wanted to understand how this process unfolded. We found that partners who had supportive supervisors were, in turn, more supportive of their co-parent at home. Having a supportive supervisor allowed individuals to bring more time and energy to their home lives. They were able to take on more of the parenting and domestic responsibilities, as well as be a more focused, engaged, and patient co-parent. Simply put, when you have an unsupportive boss, it’s hard to show up fully for your family.  As a result, the demands of managing the home domain fall disproportionately to your co-parent, which drains them of the capacity to fully thrive in their home and work lives. This effect held true regardless of parent gender and number of children.

While there is still much to untangle about how the work environments of the couples in our study affect their children and partner, these initial findings present significant takeaways for working parents.

1. Recognize and manage spillover.

While we may want to believe we can “turn off” work stress when we’re off-the-clock, our research suggests that this frequently isn’t the case. Work-family scholars refer to this as “spillover”— when experiences at work impact your ability to fully engage at home, both positively and negatively.

After a great day at work, you’re more likely to be an energetic parent and partner. But, after a draining and frustrating one, negative moods don’t necessarily dissipate right away. By becoming more aware of this process, you can develop tools for capitalizing on the positive energy and minimizing the transfer of negativity. For example, developing a commute ritual (even if it’s just from the desk to the couch) may be a useful tool for managing spillover.

2. Practice mindful division of labor.

When we dove into the research on how one partner’s boss affects their co-parent, one of the key drivers was the extent to which unsupportive bosses were associated with less equal co-parenting. While demanding work roles may mean that not every chore or task can be shared 50/50, it does highlight the importance of consciously and collaboratively determining how family responsibilities will be distributed. Experimenting with new ways to divide and manage responsibilities is an important strategy for dual-career parents to improve both partners’ satisfaction and performance at work and home.

3. Prioritize having the right boss.

While we may not have control over who we work for and with, there are times of career transition when we do have the capacity to prioritize different facets of our future roles. In those instances, recognize the potential impact that a supportive supervisor will play in your life, and seek out a supportive boss.

4. Manage up.

Since choosing your direct supervisor isn’t always an option, it’s important to be proactive in managing the relationship with the boss that you do have. Research suggests that you can manage up to facilitate greater alignment, communication, and support in your relationship with your direct supervisor. And, if your co-parent feels trapped, you can help them identify strategies for doing so, as well.

5. Cultivate communities of support.

While our research focused on the supportiveness of the workplace, it’s only one dimension of our lives that affects our immediate family. Yet, many of us focus only on work and immediate family as potential levers of support, overlooking our wider community. By cultivating a broader network of support around you — whether from extended family, neighbors, friends, community or school resources — you may find that you become less reliant on the supportiveness of your direct supervisor to facilitate wellness in your career and home. By creatively building and leveraging support in other domains of your life, you bolster your ability to thrive in challenging circumstances.

It’s no secret that a supportive boss can play an instrumental role in your ability to thrive both at work and at home. Our research takes this finding one step further by highlighting how your boss can also indirectly influence your co-parent’s ability to thrive, as well. While it may not always be an option to choose the ideal supervisor, by understanding how this process unfolds, you can take steps to more consciously navigate complex work, parenting, and partnership decisions to maximize opportunities for both you and your co-parent to thrive in all facets of life.

[ad_2]

Source link

]]>
https://cbomo.com/the-ripple-effect-of-a-bad-boss-on-dual-career-parents/feed/ 0