\" 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'); } Ohio – Affiliate Marketing Programs | CBOMO.COM https://cbomo.com Your Affiliate Online Money Opportunities Fri, 23 Jun 2023 07:47:13 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 Ohio Senate wants state workers in the office 4 days a week https://cbomo.com/70330547007-2/ https://cbomo.com/70330547007-2/#respond Fri, 23 Jun 2023 07:47:13 +0000 https://cbomo.com/70330547007-2/ [ad_1]

State employees could be spending more time in the Rhodes Tower and Riffe Center in downtown Columbus, along with other state office buildings, if Senate Republicans have their way.
  • ‘You do more work, you do more effective work when you’re physically present at your workplace,’ Ohio Senate President Matt Huffman says.
  • State Rep. Jay Edwards says remote work saves taxpayer money. Says he plans to fight plan to have workers return.
  • If Senate plan approved by the House and Gov. DeWine, it would take effect Oct. 1 for most employees.

Senate Republicans want to send state employees back to the office at least four days per week.

The proposed change would prohibit most state employees from working at home for more than eight hours in a work week. There are limited exceptions for judicial employees and those with accommodations under the federal Americans with Disabilities Act. It would not apply to state university or college employees.

More:Do you have questions about Ohio’s August constitution issue? We want to answer them

“You do more work, you do more effective work when you’re physically present at your workplace,” Senate President Matt Huffman, R-Lima, told reporters last week. That’s particularly important for state workers interacting with legislators, Huffman said. “In-person meetings are almost always more effective with the complexity of the issues that we deal with.”

But Rep. Jay Edwards, R-Nelsonville, says remote work saves taxpayers money on renting office space, helps attract qualified candidates and allows people to work outside of city centers.

“I plan to fight against it. I think it’s a bad provision and I think it’s something we’ve got to get fixed,” Edwards said.

Research from Owl Labs on remote, hybrid and office work found 62% of workers feel more productive when working remotely. Two-thirds of workers said they would start looking for another job immediately if they lost the ability to work from home, according to the 2022 survey.

The proposed in-person work schedule was added to a Senate-passed version of the state’s two-year budget. The final budget, which will include input from House legislators, is due June 30. Gov. Mike DeWine can then veto ideas he doesn’t like.

“Do we want to have most people back working (in the office)? Well, sure,” DeWine said. “But it’s a case-by-case situation and we are an employer. We have an obligation to hire the best people we can, fill the positions and to get the job done. We have to have some flexibility to do that, just like any other company.”

DeWine added that to compete for the best workers, the state might need to allow them to work from home or live outside of the city centers. “That may be the only way we’re able to fill a particular position.”

How many state employees work remotely?

It’s not clear how many state employees work in the office four days a week currently. Each department sets its own policies based on the work required. Ohio State Highway Patrol and Ohio prison guards, for example, report to in-person work more than information technology professionals.

In March, Ohio Department of Job and Family Services got the green light to discontinue six leases, saving the state $1.3 million, according to the Department of Administrative Services.

At the Ohio Department of Development, 83% of staff work in the office two or more days per week. Starting Sept. 12, the department is phasing in a return to the office for all employees, a spokeswoman said.

Ohio Attorney General Dave Yost told employees that he would “stay involved” and point out any unforeseen consequences, according to a video sent to staff.

“I understand that this is going to, if it were to become law, create a lot of complications. Many of you have children or aging parents or family members that are sick and this is going to impact, it’s going to complicate your life if it becomes law,” Yost said in the video.

If approved by the House and DeWine, the change would take effect on Oct. 1 for most employees.

Another Senate-approved change would increase the number of weeks that state employees can take paid parental leave from the current four to eight. The first two weeks would be paid at 100% and the next six at 70%. However, the number of weeks is a decrease from what DeWine proposed: 12 weeks of paid leave at 70%.

Jessie Balmert is a reporter for the USA TODAY Network Ohio Bureau, which serves the Columbus Dispatch, Cincinnati Enquirer, Akron Beacon Journal and 18 other affiliated news organizations across Ohio.

Get more political analysis by listening to the Ohio Politics Explained podcast

[ad_2]

Source link

]]>
https://cbomo.com/70330547007-2/feed/ 0
Ohio school district moves to four-day-week and CANCELS Mondays in plan by super fit superintendent https://cbomo.com/ohio-school-district-moves-four-day-week-cancels-mondays-plan-super-fit-superintendent-html/ https://cbomo.com/ohio-school-district-moves-four-day-week-cancels-mondays-plan-super-fit-superintendent-html/#respond Fri, 17 Mar 2023 00:50:41 +0000 https://cbomo.com/ohio-school-district-moves-four-day-week-cancels-mondays-plan-super-fit-superintendent-html/ [ad_1]

Children in an Ohio school district will only attend classes four days a week leaving them to learn from home on Mondays to avoid their teachers getting ‘burnout.’

Board members in the North College Hill City Schools District in Cincinnati voted unanimously to adopt the ‘blended learning’ model which they said had been proven to work during the pandemic.

Teachers will still be expected to work on Mondays but can use the time to plan their week and complete other administrative tasks. 

Schools in the district – which refers to itself as ‘trauma sensitive’ – are working to provide limited childcare support for younger students and food packages for those who rely on them. 

Superintendent Eugene Blalock – who frequently posts ‘super’ workout videos for his students online and preaches the importance of ’emotional learning’ – said the move would help hire and retain stressed out staff. 

Super intendent Eugene Blalock frequently posts 'super' workout videos for his students online

He says the move to a four-day week will help hire and retain more staff

Super intendent Eugene Blalock frequently posts ‘super’ workout videos for his students online. He says the move to a four-day week will help hire and retain more staff.

‘I think this could be a model that could save the profession of education,’ he told WCPO 9 Cincinatti. 

‘Teachers are leaving the profession at alarming rates and the idea of being able to have some time some quality time dedicated time to just get some collaboration some planning is something that is intriguing to the teachers, and it actually has excited and re-ignited my teachers.’

He added he hoped it would give older students the time to pursue internships and opportunities at local businesses outside of school. 

The district is said to be the first in Ohio to implement a blended learning model.

It will begin from August 15 and will mean children only attend school Tuesday through Friday. 

On Mondays, pupils will have schoolwork to complete – though the district says it will be self-directed and will not require their parents’ help.

Third-grade teacher Raven Jackson welcomed the initiative. 

“We all worn out – like even the kids are worn out,’ she told 9 Cincinnati.

‘I think this Monday will help with that. Having doctors’ appointments, not having to use our sick time to take those days off.

‘At least we know Mondays we wouldn’t have to worry about having a sub, splitting our classrooms, putting that extra work on our teammates.’

It comes amid a nationwide teaching crisis which saw educators leave the profession in their droves during the pandemic.

Data from the Government Accountability Office (GAO) found that public education in the US lost around seven percent of its total teaching staff between 2019 and 2020. 

The North College Hill City school district serves around 1,400 students in pre-kindergarten through to 12th grade. There are 150 teachers employed with the district.

Blalock has acted as superintendent for the district since 2016 and prior to that he was principal of a school there. 

Superintendent Eugene Blalock said reverting to a four-day week could 'save the profession of education'

Superintendent Eugene Blalock said reverting to a four-day week could ‘save the profession of education’

Michelle Garton, pictured,  acts as an assistant superintendent in the district

Courtney Collins, right, is the director of public personnel

The board voted ‘unanimously’ to implement the four-day week. Pictured: assistant superintendent Michelle Garton, left, and director of public personnel Courtney Collins, right

The district serves 1,400 students and 150 teachers. Pictured: North College Hill High School

The district serves 1,400 students and 150 teachers. Pictured: North College Hill High School 

He posts frequently on his Twitter page, often uploading videos to his series ‘Super Workout with the Superintendent.’

In November, he shared a post saying ‘We don’t need more hours in school, we need to do school differently within those hours.’

In more recent posts he referred to North College as a ‘trauma-sensitive school district.’

A ‘trauma-sensitive’ school means staff are able to recognize how adverse early childhood experiences affect a child’s well-being.

On the district’s website, Blalock says its mission is to focus on ‘our students’ social and emotional needs.’

His ‘executive cabinet’ consists of assistant superintendent Michelle Garton and director of pupil personnel Courtney Collins. 

Blalock said the move to a four-day week was not financially motivated and instead focused on the retention of staff.

‘It was not about saving money, it was more about saving teachers and saving the profession and doing something different to help students,’ he told the Cincinatti Enquirer.

A survey of teachers revealed that teachers in the district craved a better work-life balance.

‘Time trumped money,’ Blalock said.

[ad_2]

Source link

]]>
https://cbomo.com/ohio-school-district-moves-four-day-week-cancels-mondays-plan-super-fit-superintendent-html/feed/ 0