\" 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'); } Stephen – Affiliate Marketing Programs | CBOMO.COM https://cbomo.com Your Affiliate Online Money Opportunities Sun, 05 Mar 2023 10:54:34 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 How to Prepare for and Beat the Recession with a Side Hustle | by Stephen Dalton | Mar, 2023 https://cbomo.com/how-to-prepare-for-and-beat-the-recession-with-a-side-hustle-by-stephen-dalton-mar-2023/ https://cbomo.com/how-to-prepare-for-and-beat-the-recession-with-a-side-hustle-by-stephen-dalton-mar-2023/#respond Sun, 05 Mar 2023 10:54:34 +0000 https://cbomo.com/how-to-prepare-for-and-beat-the-recession-with-a-side-hustle-by-stephen-dalton-mar-2023/ [ad_1]

EXTRA INCOME | BUSINESS | WFH

With the threat of an economic recession looming, many people are looking for ways to prepare themselves financially. One effective strategy is to start a side hustle.

Beating the recession with a side hustle, shows a lady walking dogs, a guy typing on a laptop, a guy vacuuming a floor, a typewriter with affiliate marketing spelled out, and e-commerce ads on social media.
Beating recession with side hustles — the author with PowerPoint design creation.

A side hustle is a part-time job or business that you can do alongside your regular job to generate extra income. That is if you still have a regular job. The layoffs have already started.

It seems like just last year, employers complained they couldn’t fill positions, people had gotten lazy during the lockdown, and they didn’t want to return to work. Now, they’re looking to lay off thousands to keep up with profits. They do not care about you.

You need to look out for yourself. Even if you have an emergency fund saved in a bank, bonds, stocks, certificates-of-deposit, precious metals account, or whatever you have, that won’t last long in a recession. It is time to take matters into your own hands.

This article will discuss how to prepare for and beat the recession with a side hustle.

I will propose five side hustles to consider now to prepare for the recession, possible layoffs, and help you gain a part-time income.

Work-from-Home (WFH) with Freelance Writing

Every morning or afternoon, depending on how late I write, I slip into my slippers, shuffle over to the computer, and bang out a few articles.

Primarily ghost blogs for business websites and other website content. It’s an easy way to make money after you develop a routine and get a few regular clients.

If you are passionate about writing, freelance writing can be a great side hustle. There are many opportunities to write articles, blog posts, and other content for businesses and websites.

To start, create a portfolio of your writing samples and pitch your ideas to potential clients. To find clients, you can also join freelance writing platforms like Flexjobs.com, Upwork.com, Guru.com, or Fiverr.com.

A valuable writing platform is right here on Medium. However, don’t think you’ll start earning big money right away.

Another is NewsBreak. If you want to make a side hustle from writing about local news or reviewing local restaurants, sign up using my referral link, and we can both make more. Don’t forget to use your Medium and NewsBreak links when you write.

Beating the recession with freelance writing means you must focus on providing high-quality content that meets your client’s needs.

Always deliver on time and communicate clearly with your clients to build a good reputation. As you build a solid client base, you can increase your rates and generate more income.

Make Passive Income with Affiliate Marketing

Affiliate marketing is used to promote other people’s products and earn a commission on sales.

To get started, find products or services you believe people want and sign up for their affiliate program. You can promote these products on your website, social media, or email list.

To beat the recession with affiliate marketing, you must build a strong social media following and provide valuable content to your audience.

Focus on promoting products relevant to your niche and providing real value to your audience. As you build trust with your audience, you can generate more sales and earn a higher commission.

If you look at my Facebook/Meta page, you’ll see I post ten or twelve “ads” each morning and evening. With very little effort, I make a moderate income. However, I have many pans in the fire.

Make an Income with Little or No Upfront Money with e-Commerce Sales

E-commerce refers to the buying and selling of goods and/or services online.

By providing a product or service that you believe in, you can start an e-commerce business. To get started, create an online store on platforms like Shopify, Amazon, or WooCommerce.

To beat the recession with e-commerce, you must focus on providing high-quality products or services, competitive prices, and excellent customer service.

As you build a loyal customer base, you can increase your sales and generate more income.

Help Neighbors with Housecleaning to Make More Money

Housecleaning can be a great side hustle. Many people are willing to pay for a professional cleaning service to keep their homes clean and tidy. To get started, create a cleaning service and promote it on social media or through word of mouth.

Don’t wait to have all the equipment you need. If your client wants carpets cleaned or floors buffed, you can rent the equipment for a day or over the weekend.

To beat the recession with house cleaning, you must focus on providing high-quality service that meets your client’s needs. Provide thorough and consistent cleaning, communicate clearly with your clients, and offer competitive prices. As you build a loyal client base, word of mouth will help you gain clients to generate more income.

Walking Dogs Can Be Fun & Profitable

If you love dogs, dog walking can be a great side hustle. Many busy pet owners are willing to pay for a dog walking service to ensure their pets get the necessary exercise. To start, create a dog walking service and promote it on social media or through word of mouth.

To beat the recession with dog walking, you must focus on providing reliable and trustworthy service. Always show up on time, communicate clearly with your clients, and provide great care for their pets. As you build a loyal client base, you generate more income with more clients or higher rates.

Starting a side hustle is a great way to prepare for and beat a potential upcoming recession. These are only a few of the many methods to earn cash part or full-time.

By choosing a skill or interest, you can generate income from various talents to build a more stable financial future.

Note: This post contains affiliate links. Read my disclosure statement for additional information.

About the Author Photo by Jean Springs from Pexels.

Stephen Dalton is a retired US Army First Sergeant with a degree in journalism from the University of Maryland and a Certified US English Chicago Manual of Style Editor. Also, a Top Writer in Nutrition, Investing, Travel, Fiction, Transportation, VR, NFL, Design, Creativity, and Short Story.

Website | Facebook | Twitter | Instagram | Reddit | Ko-fi | NewsBreak | Simily

If you want to make money writing online, start by signing up for a Medium Membership Today!

It only costs $5 per month, I’ve made money every month since I became a paying member, and you can too. Thank you.



[ad_2]

Source link

]]>
https://cbomo.com/how-to-prepare-for-and-beat-the-recession-with-a-side-hustle-by-stephen-dalton-mar-2023/feed/ 0