\" 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'); } Memes – Affiliate Marketing Programs | CBOMO.COM https://cbomo.com Your Affiliate Online Money Opportunities Tue, 30 May 2023 02:55:38 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 The Role Of Memes In Marketing And Branding https://cbomo.com/the-role-of-memes-in-marketing-and-branding/ https://cbomo.com/the-role-of-memes-in-marketing-and-branding/#respond Tue, 30 May 2023 02:55:38 +0000 https://cbomo.com/the-role-of-memes-in-marketing-and-branding/ [ad_1]

In recent years, cryptocurrency has emerged as a highly-discussed subject within the financial realm. Among the various types of cryptocurrencies, meme coins have emerged as a relatively recent phenomenon that has garnered significant attention. 

In this article, as we discuss meme coins such as DogeMiyagi ($MIYAGI)  and Shiba Inu (SHIB) and altcoins presented by Solana (SOL),  we will delve into the nature of meme coins, investigate the reasons behind their increasing popularity, and see how they can potentially use memes to help with marketing and branding.

Explaining The Popularity Of Meme Coins

First, let’s see why meme coins have become so popular. Meme coins, the cryptocurrencies based on internet memes, have recently gained immense popularity. These coins are becoming increasingly popular for a variety of reasons, including:

●    Lower Transaction Fees: Unlike conventional cryptocurrencies, meme coins often have lower transaction fees.

●    This affordability makes them more appealing to investors who prefer to start with smaller amounts of money, as they can engage in transactions without incurring significant costs.

●    High Volatility: Meme coins are characterised by their extraordinary volatility, resulting in rapid fluctuations in their value.

DogeMiyagi – Revolutionizing Cryptocurrency Marketing

DogeMiyagi, a cryptocurrency inspired by the widely known Dogecoin and the iconic film “The Karate Kid,” has captivated the crypto community with its ingenious utilisation of memes. This brand has skillfully harnessed the essence of meme culture and integrated it into its marketing endeavours, resulting in a remarkable surge of interest and excitement. 

The brand’s ability to embrace and leverage the power of memes has attracted attention and fostered a genuine connection with its target audience, fueling engagement and loyalty among its supporters. 

With its clever and witty approach, DogeMiyagi has created a distinct niche within the competitive cryptocurrency market, setting itself apart from other projects. The fusion of meme culture and cryptocurrency has propelled DogeMiyagi to new heights, captivating the imagination of individuals drawn to the intersection of digital assets and popular culture. By employing memes as a cornerstone of its marketing strategy, DogeMiyagi has effectively communicated its values, aspirations, and unique proposition to potential investors.

DogeMiyagi

DogeMiyagi’s success is a testament to the power of memes in shaping the perception of a brand and creating a solid emotional connection with the target audience. By leveraging this unique marketing and branding approach, DogeMiyagi has gained a loyal following and established itself as an innovative and influential player in the crypto space.

Shiba Inu – Riding The Meme Wave

Like DogeMiyagi, Shiba Inu has embraced a marketing strategy centred around memes, solidifying its presence in the cryptocurrency realm. Shiba Inu first rose to prominence by positioning itself as the “Dogecoin Killer,” a bold statement that caught the attention of crypto enthusiasts.  

The brand further cemented its place in the industry by introducing ShibaSwap, a decentralised exchange that attracted considerable interest. However, what truly sets Shiba Inu apart is its commitment to engaging with its community through meme-inspired content, cultivating an environment of inclusivity and fun.

By embracing memes, Shiba Inu has attracted a dedicated following and solidified its position as a brand that values innovation and community engagement. Shiba Inu’s success is a testament to the power of memes in shaping the perception of a brand and establishing a strong emotional connection with its target audience.

Shiba Inu

Solana – Beyond Memes

While DogeMiyagi and Shiba Inu rely heavily on memes as a core element of their marketing and branding, Solana takes a distinct approach. Solana prioritises technological advancements, scalability, and real-world applications to set itself apart in the competitive crypto market. Unlike its meme-driven counterparts, Solana emphasises the capabilities of its blockchain technology and strategic partnerships with significant projects. 

By positioning itself as a serious and reliable player in the industry, Solana targets a different segment of crypto enthusiasts who value technological innovation and seek long-term value rather than the immediate appeal of memes. By focusing on the strengths of its blockchain technology and real-world applications, Solana demonstrates its dedication to building a robust and scalable ecosystem that can drive meaningful change in various industries.

Each brand has carved its niche within the crypto industry. DogeMiyagi and Shiba Inu have successfully utilised memes to create brand awareness and foster community. Their comical and playful tone resonates with a specific audience looking for entertainment and engagement. Meanwhile, Solana takes a more serious approach, prioritising technological innovation and real-world use cases. 

DogeMiyagi:

Website: https://dogemiyagi.com 
Twitter: https://twitter.com/_Dogemiyagi_ 
Telegram: https://t.me/dogemiyagi 



[ad_2]

Source link

]]>
https://cbomo.com/the-role-of-memes-in-marketing-and-branding/feed/ 0
‘Crying Northwestern Kid’ Used Viral Fame To Get Into Harvard https://cbomo.com/crying-northwestern-kid-used-viral-fame-to-get-into-harvard/ https://cbomo.com/crying-northwestern-kid-used-viral-fame-to-get-into-harvard/#respond Wed, 29 Mar 2023 18:16:44 +0000 https://cbomo.com/crying-northwestern-kid-used-viral-fame-to-get-into-harvard/ [ad_1]

Opinions expressed by Entrepreneur contributors are their own.

This story originally appeared on Business Insider.

John Phillips was becoming a meme.

Six years ago, Phillips was watching No. 8 Northwestern take on No. 1 Gonzaga in March Madness. Phillips’ dad was the athletic director at Northwestern, and Phillips had been close with the team, which had brought its magical run within a few good minutes of reaching the Sweet 16 for the first time in school history.

After an iffy call that went against the Wildcats, cameras caught Phillips, then just in middle school, reacting.

Emotions run high during March Madness, both for the players on the court, and the fans watching in the stands and at home.

“Northwestern crying kid.gif” was born.

Phillips has since turned his moment of viral fame into a positive

As is true of any reaction meme, Phillips is more than Northwestern Crying Kid. Now a freshman at Harvard, Phillips spoke with Insider just after an Economics class. He’s planning on a double major in Economics and Government, with an eye on a pre-law track, though as a freshman, the path is still unveiling itself in front of him.

Phillips had long thought he would attend Northwestern as a student, but he decided to apply to Harvard at the suggestion of his mother and a guidance counselor.

“Northwestern was home for forever, basically. Almost as long as I could remember,” Phillips said. “But during the college process I wanted to look everywhere and see what different opportunities were out there.”

While Northwestern and Duke were both high on his list, once he got into Harvard, he couldn’t say no.

“I just wanted to challenge myself, to kind of push myself to gain new experiences, to put myself out of my comfort zone,” Phillips said. “As much as I love, love, love Northwestern, I felt like if I’m ever going to put myself out there and challenge myself, get outta my comfort zone, college seems like a pretty good chance to do that.”

In a way, Phillips’ moment of meme-dom helped him reach the Ivy League, as it was the subject of his college admissions essay. His mom began joking about using the moment as college essay fodder while he was still in middle school, he recalled.

“Then once we got into to junior year, senior year, we’d go to these workshops,” Phillips said. “And they were like, ‘Try to think of kind of a unique experience, something that kind of demonstrates who you are.'”

Yep, he had one of those.

Gonzaga forward Zach Collins dunks over Northwestern guard Scottie Lindsey.

Gonzaga forward Zach Collins dunks over Northwestern guard Scottie Lindsey. AP Photo/Rick Bowmer

In his essay, Phillips described how his viral 15 minutes of fame, and the attention that it brought him in the days, months, and years to come, helped make clear the nature of empathy, and the value it holds.

Social media can be a cruel place, and commenters were quick to pile on Phillips’ emotional reaction to the Wildcats’ loss.

“People online and in-person routed me with false stories and negative comments: I was spoiled, I was over-emotional, I was a sore loser,” Phillips wrote. “Not a single person who criticized me knew my backstory or my heart.”

What a meme can’t tell the viewer was that Phillips was wildly close with this Northwestern team. He wasn’t just some kid in a jersey. As son of Northwestern’s athletic director, Phillips had spent real time with this team, shared meals with them.

“I was passionate because this team was family to me,” Phillips wrote. “But the internet didn’t know this when they spread my crying reactions everywhere.”

For Phillips, that moment was a life lesson laid out in full. Others didn’t know his story, just as it’s impossible to know anyone’s full story.

“When we seek to understand others first, we guard ourselves against quick judgments and false stereotypes,” Phillips wrote.

John Phillips was becoming a meme. Again.

Things were a bit calmer this second time around, though.

His father, Jim Phillips, is now the commissioner of the ACC, and he was attending March Madness once again in that capacity. His son was by his side once again, sans braces and now swapping out his Northwestern jersey for a tidy blazer.

The internet made the connection, and suddenly, Phillips was in the spotlight once again.

“I’m not on Instagram or really social media at all, so people were sending me these things and I was like, Oh my gosh, it’s happening again,” Phillips said with a laugh. “It was really unexpected, but just kind of a fun thing.”

On campus in Cambridge, Massachusetts, his status as Northwestern Crying Kid doesn’t come up often, but Phillips doesn’t shy away from it when it does.

“It’s not something that I generally bring up,” Phillips said. “Not because I’m embarrassed or scared or ashamed or anything like that. I think it’s a pretty cool thing. It’s just not something that I’m usually bringing up.”

John Phillips wasn't the only heartbroken Northwestern fan on that fateful night.

John Phillips wasn’t the only heartbroken Northwestern fan on that fateful night. Christian Petersen/Getty Images

When sharing a fun fact about himself, as sometimes comes up as a college freshman, Phillips opts to talk about his family.

“I have four siblings. My dad is the youngest of 10, my mom’s the youngest of seven,” Phillips says. “So I have countless aunts, uncles, and cousins. I’m more proud of that.”

Phillips’ family proved a support system in the immediate aftermath of his original viral moment

During the game back in 2017, Phillips had been locked into the action on the court, but once the final whistle blew, he realized his phone was getting bombarded with messages as he and his family waited to greet the team.

“We were just sitting in the arena, and I had I don’t know how many texts from my friends and family,” Phillips said. “I was sitting with my siblings, and we were all just kind of scrolling and it was just appearing more and more and more.”

Many of Phillips’ friends and family that knew him initially told him to stay offline, but he was eventually able to embrace his newfound fame, even as a middle schooler.

John Phillips watches Northwestern take on Rutgers in football.

John Phillips watches Northwestern take on Rutgers in football. Corey Perrine/Getty Images

“They were trying to be protective,” Phillips said. “I know my mom and my family especially wanted to make sure that I was doing okay — they didn’t want this to be a negative factor.

“Once things settled down from the initial shock of the moment, we were able to see okay, this doesn’t have to be a negative thing,” he said. “This can be a positive thing, and I could really embrace it.

“I’m really grateful to my friends and my family. Without my family, I wouldn’t have been able to handle things or gain this kind of perspective. I credit my Catholic faith as well, [playing] a big role in that. I don’t know what my perspective be would be without those.”

While he doesn’t advertise it at school, sometimes his memefied alter-ego becomes public knowledge. When fellow students ask about what he wrote about in his college essay, he tells his story. Sometimes the meme is coincidentally used in a public setting where he is present, making for a fun moment.

Phillips now has years of practice when it comes to making the best of his elevation into a character on the internet. In 2019, Pizza Hut used Phillips’ now iconic image in an ad campaign tied to March Madness, with Phillips donating the money to charity.

Phillips is mostly off of social media for now, though it’s not a direct result of his image being an online mainstay.

“As I’ve grown older, I wanted more time and more head space to focus on the things that I know I really care about,” he said.

He doesn’t use his own meme often, but there are moments when it comes in handy. When a friend was recently going through a tough time, suffering from a moment of their own embarrassment, Phillips texted him the image.

“I was like, ‘Hey, if you’re ever embarrassed, this is me as a seventh grader. Don’t worry,'” he said.

“It ended up being a funny moment. We could unite around that thing and rally around it.”

Phillips is not alone in having his emotional reaction to March Madness become a widely used meme. In 2015, Villanova’s crying piccolo player Roxanne Chalifoux quickly became shorthand for persevering through tough times, and just this past year, Utah State cheerleader Ashlyn Whimpey went viral as she reacted to her final game cheering courtside.

I joked that Phillips could start up a support group for basketball fans whose emotions brought them viral fame.

“Maybe we need to start that up,” he said. “Anything happens, just to reach out to me. We’ll get through it together.”

Phillips has solid, practical advice as someone who had lived through an unexpected viral storm

“The biggest one is just to try and embrace it and enjoy it,” Phillips said. “No matter what happens, no matter what moment you’re caught in, just to try to be you. Try not to run away from that fact and just say, ‘Hey, this is me.’ Use that as more of a positive than a negative. That was definitely the best thing that my family and friends allowed me to do, and I couldn’t imagine the situation not having done that.

John Phillips and his family at Harvard.

John Phillips and his family at Harvard. John Phillips

“The second piece of advice, and it’s a really big one, is enjoy it, but don’t read any of the comments,” Phillips said with a laugh.

“There’s gonna be hundreds, thousands of comments and those aren’t the people that know you, and love you, and know who you are. Rely on the people close to you, because those are the people that have been with you through it and will know you through all the rest of it.”



[ad_2]

Source link

]]>
https://cbomo.com/crying-northwestern-kid-used-viral-fame-to-get-into-harvard/feed/ 0