When you’re doing social networking the right way for your website it can bring huge amounts of traffic. Social is all about the visuals so if you want to make your content work well you need to use all the right visual cues.

But how do you make sure the right imagery – the imagery you want – is being used?

How can you be in control when your content is shared, rather than let your social network of choice (or even a popular theme you’re using) choose an image at random for you?

Both themes and plugins can actually automate this. But automation is a killer because you lose control.

On the other hand, it’s you who should decide. It’s you who needs to make recommendations to social networks, so that they’ll know what you’d prefer to show.

And to do this, you’ll need to use a language social networks understand.

That language is called Open Graph.

In this article, I’ll discuss various ways of setting up Open Graph on your WordPress website.

What is the Open Graph Protocol?

The Open Graph protocol is a way to explain all the characteristics of an object, e.g. a post on your website, to make it richer in the context of social networks.

By explaining the characteristics of your post, Social Networks will be able to understand (rather than guess) what the author had in mind for that article and then use it accordingly.

For example, if you don’t specify the open graph title for your post, social networks will have to guess it from the </code> tag of your HTML.</p> <p>Finding the title of a post is quite trivial since it is fairly standard for people to use the name of the post in the <code><title></code> of the post, but the social network is still guessing your intent.</p> <p>An even more practical example of how Open Graph is useful to you as a WordPress user is which image to show when your article is shared on social networks.</p> <p>If you don’t specify an Open Graph image, Facebook and other social networks will try to guess which image they should use as the preview to your article.</p> <p>You’ll probably want to use your blog intro image to share after you’ve worked so hard at getting it designed.</p> <p>However, it is quite often that mistakes are made when guessing the image to use as the preview.</p> <p>For example, the logo of your website may get picked up, or another image in the article, which was not meant as the article preview.</p> <p>An even worse experience would be if the image of an ad was picked up as the article preview.</p> <p>This is where Open Graph can make all the difference.</p> <h2>Basic tags available for WordPress Open Graph?</h2> <p>We’ve already seen a couple of quick examples of Open Graph tags. Let’s discuss a few further examples of tags that we can use with our WordPress Open Graph.</p> <p>This is the name that is used to share the post:</p> <pre>og:title</pre> <p>The preview image of your post is an important tag to enable the success of your social media campaigns:</p> <pre>og:image</pre> <p>This Open Graph tag will describe the actual URL to visit when the link is clicked:</p> <pre>og:url</pre> <p>The description is also something that is highly visible, so customizing this to encourage people to visit your site is essential.</p> <p>Many people actually use the meta description contents here, which many times have also been optimized for high click-through rates:</p> <pre>og:description</pre> <p>To explain these tags visually, here’s an example of how our WordPress Open Graph tags are translated when sharing a post on Facebook:</p> <div class="wpdui-pic-regular"> <figure class="wp-caption aligncenter" data-caption="true"><img loading="lazy" class="attachment-670x670 size-670x670 wpmudev-lazy-image" src="https://premium.wpmudev.org/blog/wp-content/uploads/2016/10/facebook-og-example.png" alt="An example of a WPMU DEV posted when shared to Facebook." width="583" height="670" data-lazy-src="https://premium.wpmudev.org/blog/wp-content/uploads/2016/10/facebook-og-example.png?is-pending-load=1" ><noscript><img loading="lazy" class="attachment-670x670 size-670x670 wpmudev-lazy-image" src="https://premium.wpmudev.org/blog/wp-content/uploads/2016/10/facebook-og-example.png" alt="An example of a WPMU DEV posted when shared to Facebook." width="583" height="670" data-lazy-src="https://premium.wpmudev.org/blog/wp-content/uploads/2016/10/facebook-og-example.png?is-pending-load=1" ><noscript><img loading="lazy" class="attachment-670x670 size-670x670" src="https://premium.wpmudev.org/blog/wp-content/uploads/2016/10/facebook-og-example.png" alt="An example of a WPMU DEV posted when shared to Facebook." width="583" height="670" /></noscript></noscript><figcaption class="wp-caption-text">An example of a WPMU DEV posted when shared to Facebook.</figcaption></figure> </p></div> <p>The type Open Graph tag describes whether the object being shared is an article, a video, music, a book, a user profile or a website.</p> <p>There are further tags which can be used to describe each specific type. You can have a look at the detailed tags which can be used in the <a href="http://ogp.me/#types">Open Graph types section</a>.</p> <pre>og:type</pre> <h2>Other Open Graph Tags Available for Describing Your Website’s Content</h2> <p>Besides the above basic tags, there are a number of further Open Graph tags that can be used with your WordPress website to further describe the content.</p> <p>Most of the Open Graph WordPress tags are optional, however, there’s lots of content that will be better enabled if these tags are populated correctly:</p> <pre>og:audio</pre> <p>and</p> <pre>og:video</pre> <p>If there is any kind of audio or video that can compliment this content, this OG tag can be used to describe it’s URL location:</p> <pre>og:site_name</pre> <p>Larger sites that have thousands of pieces of content may want to use this tag to denote that the content being shared is part of the larger branded site.</p> <h3>Additional Tags within Specific OG Tags</h3> <p>Some of the tags described above can also take additional descriptive tags.</p> <p>Let’s take the og<code>:image</code> as an example. Incidentally, og<code>:</code>video has exactly the same properties as og<code>:image</code>.</p> <p>All of the below are additional properties that can be described using the corresponding Open Graph tags:</p> <ul> <li><code>og:image:url</code> – This is identical to <code>og:image</code> and can be used interchangeably.</li> <li><code>og:image:secure_url</code> – This is the URL that should be used use if the website is accessible over HTTPS</li> <li><code>og:image:type</code> – This tag describes the <a href="http://en.wikipedia.org/wiki/Internet_media_type">MIME type</a> of this image.</li> <li><code>og:image:width</code> and <code>og:image:height</code> – these tags describe the dimensions of the image</li> </ul> <p>The following is a full example of using the <code>og:image</code> tag:</p> <pre><code><meta property="og:image" content="https://premium.wpmudev.org/blog/image1.jpg" /> </code> <code><meta property="og:image:secure_url" content="https://premium.wpmudev.org/blog/image1.jpg" /></code> <code><meta property="og:image:type" content="image/jpeg" /> <meta property="og:image:width" content="400" /></code> <code><meta property="og:image:height" content="300" /></code></pre> <p>Other structured properties include:</p> <ul> <li><code>music.song</code></li> <li><code>music.album</code></li> <li><code>music.playlist</code></li> <li><code>music.radio_station</code></li> <li><code>video.movie</code></li> <li><code>video.episode</code></li> <li><code>video.tv_show</code></li> </ul> <p>All of these have their own tags that are used to provide additional details about the object.</p> <p>But how do we go about implementing Open Graph tags in WordPress?</p> <p>There are a number of possible ways.</p> <h2>Manually Setting Open Graph Tags</h2> <p>I mentioned a bit further up in this article that you should be able to extract most of the information required for OG tags from your existing WordPress content.</p> <p>Using some edits in your site’s <em>functions.php</em> file, you will be reading the data from your content and pushing it out as OG tags.</p> <p><script src="https://gist.github.com/dattard21/7b99a3b4410a9aed173e8b7f2ac43578.js"></script></p> <p>This is required such that social networks using your content will actually know that there are Open Graph tags being used to describe your WordPress content.</p> <p>The below is actually picking up the specific parts of your WordPress content and constructing OG tags from them:</p> <p><script src="https://gist.github.com/dattard21/ca4400917eecc9c657a28b6db6f8fedb.js"></script></p> <p>You’ll need to customize a few of the tags above, such as replace the og<code>:site_name</code> with the actual name of your site.</p> <p>You’ll also need to discover your Facebook admin id and replace it in the value of the fb<code>:admins</code> content tag.</p> <h2>Setting up WordPress Open Graph Using a Plugin</h2> <p>To take advantage of using Open Graph, you will need to setup your WordPress website such that this information is picked up as necessary from your content and added to any WordPress content.</p> <p>If your primary social networking campaigns will be deployed through Facebook, one option is to install a plugin like <a href="https://wordpress.org/plugins/wonderm00ns-simple-facebook-open-graph-tags/" target="_blank" rel="noopener noreferrer">Open Graph and Twitter Card Tags. </a></p> <p>This plugin inserts Facebook Open Graph Tags into your WordPress blog/website, helping to enhance your Facebook sharing results.</p> <p><a href="https://wordpress.org/plugins/open-graph-protocol-framework/">Open Graph Protocol Framework</a> is another great option. It’s really simple to get up and running and it doesn’t require any Facebook App to be created, which is a plus.</p> <p>You also can’t go passed our own <a href="https://wordpress.org/plugins/smartcrawl-seo/" target="_blank" rel="noopener noreferrer">SmartCrawl</a> which comes loaded with open graph support. SC’s social integration gives you all the tools you need to get recognized, and take full advantage of viral content.</p> <div class="wpdui-pic-large"> <figure class="wp-caption aligncenter" data-caption="true"><img loading="lazy" class="attachment-1364x1364 size-1364x1364 wpmudev-lazy-image" src="https://premium.wpmudev.org/blog/wp-content/uploads/2016/10/ultimate-facebook.png" alt="Our Ultimate Facebook plugin provides an easy way for you to add Open Graph tags to your WordPress website." width="850" height="565" data-lazy-src="https://premium.wpmudev.org/blog/wp-content/uploads/2016/10/ultimate-facebook.png?is-pending-load=1" ><noscript><img loading="lazy" class="attachment-1364x1364 size-1364x1364 wpmudev-lazy-image" src="https://premium.wpmudev.org/blog/wp-content/uploads/2016/10/ultimate-facebook.png" alt="Our Ultimate Facebook plugin provides an easy way for you to add Open Graph tags to your WordPress website." width="850" height="565" data-lazy-src="https://premium.wpmudev.org/blog/wp-content/uploads/2016/10/ultimate-facebook.png?is-pending-load=1" ><noscript><img loading="lazy" class="attachment-1364x1364 size-1364x1364" src="https://premium.wpmudev.org/blog/wp-content/uploads/2016/10/ultimate-facebook.png" alt="Our Ultimate Facebook plugin provides an easy way for you to add Open Graph tags to your WordPress website." width="850" height="565" /></noscript></noscript><figcaption class="wp-caption-text">Our Ultimate Facebook plugin provides an easy way for you to add Open Graph tags to your WordPress website.</figcaption></figure> </p></div> <h2>Ultimate Facebook Plugin: Not Just Open Graph Tags</h2> <p>Most of this post has been about social networks.</p> <p>Let’s face it, though, in most circumstances, Facebook is still the king of the social networks of choice (followed closely by Instagram, but they both fall under the same umbrella anyway).</p> <p>The lifetime of a tweet on Twitter is very short, measured in minutes or even seconds. And yes, LinkedIn has its strong points and groups.</p> <p>But Facebook, despite several predictions of its untimely demise, is still the busiest community out there. We’re talking billions of engaged users. If you’ve got money to spend, spend it on Facebook 😉 You’ll be doing yourself a favor.</p> <p>Why am I sucking up so much to Facebook? Unfortunately, I’m not a shareholder, nor have I got any relation to Zuckerberg.</p> <p>There’s a very simple but very valid reason.</p> <p>One of the ways of making your website more successful is by creating an engaged community. By integrating your website tightly with Facebook you are riding piggyback on the popularity of the social network.</p> <p>You’ll slowly pull in the Facebook community to your website and keep them engaged with your brand through Facebook.</p> <p>By making your website and Facebook mostly seamless, you’re engaging with your community on their own terms.</p> <p>Now, how do you go about making your website and Facebook come together?</p> <p>Enter the <a href="https://github.com/wpmudev/ultimate-facebook" target="_blank" rel="noopener noreferrer">Ultimate Facebook plugin.</a></p> <p>Whilst I’m not going to go into detail here describing the whole feature set of this plugin, it’s important to highlight a few of its benefits.</p> <h3>1. You Get All of the Essential WordPress Open Graph Tags</h3> <p>We’ve been searching for ways to create WordPress Open Graph tags using plugins.</p> <p>This is another of the easy ones as already discussed. It’s also got a specific feature, which is better than the rest of the plugins I tested.</p> <p>I mentioned that there are quite a few Open Graph tags that are not used by every site, since they are for very specific types of content.</p> <p>Ultimate Facebook allows you to insert additional Open Graph headers manually.</p> <div class="wpdui-pic-regular"> <figure class="wp-caption aligncenter" data-caption="true"><img loading="lazy" class="attachment-670x670 size-670x670 wpmudev-lazy-image" src="https://premium.wpmudev.org/blog/wp-content/uploads/2016/09/Facebook_OpenGraph.png" alt="Facebook Open Graph support parameters" width="670" height="608" data-lazy-src="https://premium.wpmudev.org/blog/wp-content/uploads/2016/09/Facebook_OpenGraph.png?is-pending-load=1" ><noscript><img loading="lazy" class="attachment-670x670 size-670x670 wpmudev-lazy-image" src="https://premium.wpmudev.org/blog/wp-content/uploads/2016/09/Facebook_OpenGraph.png" alt="Facebook Open Graph support parameters" width="670" height="608" data-lazy-src="https://premium.wpmudev.org/blog/wp-content/uploads/2016/09/Facebook_OpenGraph.png?is-pending-load=1" ><noscript><img loading="lazy" class="attachment-670x670 size-670x670" src="https://premium.wpmudev.org/blog/wp-content/uploads/2016/09/Facebook_OpenGraph.png" alt="Facebook Open Graph support parameters" width="670" height="608" /></noscript></noscript><figcaption class="wp-caption-text">Facebook Open Graph support.</figcaption></figure> </p></div> <h3>2. Eliminate the Registration Barrier from Your Site</h3> <p>You probably want your users to register on your site to bring about more benefits for them.</p> <p>Yet, whether you like it or not, registration is a barrier.</p> <p>If you were to get rid of the barrier you would have much faster growth. With Ultimate Facebook and Connect, users will be able to register for your site using their Facebook account.</p> <p>This means registration becomes a simple one-click process.</p> <div class="wpdui-pic-regular"> <figure class="wp-caption aligncenter" data-caption="true"><img loading="lazy" class="attachment-670x670 size-670x670 wpmudev-lazy-image" src="https://premium.wpmudev.org/blog/wp-content/uploads/2016/09/Facebook_connect.png" alt="Allowing registration to your WordPress site through Facebook" width="670" height="598" data-lazy-src="https://premium.wpmudev.org/blog/wp-content/uploads/2016/09/Facebook_connect.png?is-pending-load=1" ><noscript><img loading="lazy" class="attachment-670x670 size-670x670 wpmudev-lazy-image" src="https://premium.wpmudev.org/blog/wp-content/uploads/2016/09/Facebook_connect.png" alt="Allowing registration to your WordPress site through Facebook" width="670" height="598" data-lazy-src="https://premium.wpmudev.org/blog/wp-content/uploads/2016/09/Facebook_connect.png?is-pending-load=1" ><noscript><img loading="lazy" class="attachment-670x670 size-670x670" src="https://premium.wpmudev.org/blog/wp-content/uploads/2016/09/Facebook_connect.png" alt="Allowing registration to your WordPress site through Facebook" width="670" height="598" /></noscript></noscript><figcaption class="wp-caption-text">Allowing registration to your WordPress site through Facebook</figcaption></figure> </p></div> <h3>3. Setup Facebook Comments on WordPress</h3> <p>Deciding whether to use native WordPress comments or choosing between <a href="https://www.collectiveray.com/wordpress/wordpress-tips-and-tricks/wordpress-comments-plugins.html">WordPress comments systems</a> is something of a decision that is not to be taken too lightly.</p> <p>The reality is that if you want to switch between comment systems, the likelihood is that you’re going to lose some information in the transfer.</p> <p>Facebook comments is the best of most worlds. It’s a great way of integrating Facebook with your website.</p> <p>It also brings about additional features which the native WordPress comments system does not have such as Liking comments and displaying comments by comments or popularity.</p> <p>Of course, the fact users don’t need to register to comment removes another engagement barrier.</p> <p>And there’s another bonus – using Facebook comments makes your site less prone to comment spam. Real Facebook user profiles are unlikely to be used to spam other websites because it will leave a negative impact on their profile.</p> <h3>4. Post Articles and Updates Automatically to Your Facebook Accounts</h3> <p>Auto-posting your articles to Facebook makes it much easier for your to bring your audience back to your website.</p> <h2>The importance of WordPress OG tags</h2> <p>Open Graph tags are essential for your WordPress website if you want to be in full control of the way your content is shared on social media.</p> <p>It’s certainly worth doing because it not only helps you stand out from the crowd and draw more clicks and view, but you’re also helping search engines better display your content.</p> <div class="wpmud-hg-subscribe"><img src="https://premium.wpmudev.org/wp-content/themes/wpmudev-2015-1/assets/img/guarantee-stamp.png" aria-hidden="true" alt="Guarantee Stamp" data-lazy-src="https://premium.wpmudev.org/wp-content/themes/wpmudev-2015-1/assets/img/guarantee-stamp.png?is-pending-load=1" class="wpmudev-lazy-image"><noscript><img src="https://premium.wpmudev.org/wp-content/themes/wpmudev-2015-1/assets/img/guarantee-stamp.png" aria-hidden="true" alt="Guarantee Stamp" data-lazy-src="https://premium.wpmudev.org/wp-content/themes/wpmudev-2015-1/assets/img/guarantee-stamp.png?is-pending-load=1" class="wpmudev-lazy-image"><noscript><img src="https://premium.wpmudev.org/wp-content/themes/wpmudev-2015-1/assets/img/guarantee-stamp.png" aria-hidden="true" alt="Guarantee Stamp"https://premium.wpmudev.org/></noscript></noscript></p> <h2 class="subscribe-headline">1.6 million WordPress Superheroes read and trust our blog. Join them and get daily posts delivered to your inbox – free!</h2> <form action="//wpmudev.us1.list-manage.com/subscribe/?u=53a1e972a043d1264ed082a5b&id=591b793ca5" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate subscribe-form wpdui-form" target="_blank" novalidate> <div id="mce-responses"> <div class="response" id="mce-error-response" style="display:none"></div> <div class="response" id="mce-success-response" style="display:none"></div> </p></div> <div class="wpdui-form-field-group"> <div class="wpdui-form-field"> <label class="sr-only" for="mce-EMAIL">Email address</label> <input type="email" value="" name="EMAIL" class="wpdui-form-field__input subscribe-email-input required email" placeholder="Your email address" id="mce-EMAIL" required /> </div> <div class="wpdui-form-field-group__cta"> <button onclick="ga('send', 'event', 'Blog newsletter opt-in button', 'Middle - Click', 'https://premium.wpmudev.org/blog/wordpress-open-graph/');" type="submit" class="wpdui-btn wpdui-btn--brand" id="mc-embedded-subscribe">Subscribe</button> </div> </p></div> </p></form> </p></div> </p></div> </p> </div> </div> <div class="post-footer"> <div class="social-icons ed-social-share-icons"> <p class="share-title">Share:</p> <a href="http://www.facebook.com/sharer.php?u=https://wordpresswebsitesupport.com/how-to-add-facebook-open-graph-meta-tags-to-wordpress-themes/&t=How%20to%20Add%20Facebook%20Open%20Graph%20Meta%20Tags%20to%20WordPress%20Themes" class="social-share-link" title="Share "How to Add Facebook Open Graph Meta Tags to WordPress Themes" via Facebook" data-network-name="facebook" data-share-title="How to Add Facebook Open Graph Meta Tags to WordPress Themes" data-share-url="https://wordpresswebsitesupport.com/how-to-add-facebook-open-graph-meta-tags-to-wordpress-themes/"> <span class="et-extra-icon et-extra-icon-facebook et-extra-icon-background-hover" ></span> </a><a href="http://twitter.com/intent/tweet?text=How%20to%20Add%20Facebook%20Open%20Graph%20Meta%20Tags%20to%20WordPress%20Themes%20https://wordpresswebsitesupport.com/how-to-add-facebook-open-graph-meta-tags-to-wordpress-themes/" class="social-share-link" title="Share "How to Add Facebook Open Graph Meta Tags to WordPress Themes" via Twitter" data-network-name="twitter" data-share-title="How to Add Facebook Open Graph Meta Tags to WordPress Themes" data-share-url="https://wordpresswebsitesupport.com/how-to-add-facebook-open-graph-meta-tags-to-wordpress-themes/"> <span class="et-extra-icon et-extra-icon-twitter et-extra-icon-background-hover" ></span> </a><a href="https://plus.google.com/share?url=https://wordpresswebsitesupport.com/how-to-add-facebook-open-graph-meta-tags-to-wordpress-themes/&t=How%20to%20Add%20Facebook%20Open%20Graph%20Meta%20Tags%20to%20WordPress%20Themes" class="social-share-link" title="Share "How to Add Facebook Open Graph Meta Tags to WordPress Themes" via Google +" data-network-name="googleplus" data-share-title="How to Add Facebook Open Graph Meta Tags to WordPress Themes" data-share-url="https://wordpresswebsitesupport.com/how-to-add-facebook-open-graph-meta-tags-to-wordpress-themes/"> <span class="et-extra-icon et-extra-icon-googleplus et-extra-icon-background-hover" ></span> </a><a href="https://www.tumblr.com/share?v=3&u=https://wordpresswebsitesupport.com/how-to-add-facebook-open-graph-meta-tags-to-wordpress-themes/&t=How%20to%20Add%20Facebook%20Open%20Graph%20Meta%20Tags%20to%20WordPress%20Themes" class="social-share-link" title="Share "How to Add Facebook Open Graph Meta Tags to WordPress Themes" via Tumblr" data-network-name="tumblr" data-share-title="How to Add Facebook Open Graph Meta Tags to WordPress Themes" data-share-url="https://wordpresswebsitesupport.com/how-to-add-facebook-open-graph-meta-tags-to-wordpress-themes/"> <span class="et-extra-icon et-extra-icon-tumblr et-extra-icon-background-hover" ></span> </a><a href="http://www.pinterest.com/pin/create/button/?url=https://wordpresswebsitesupport.com/how-to-add-facebook-open-graph-meta-tags-to-wordpress-themes/&description=How%20to%20Add%20Facebook%20Open%20Graph%20Meta%20Tags%20to%20WordPress%20Themes&media=https://wordpresswebsitesupport.com/wp-content/uploads/2019/12/3990/how-to-add-facebook-open-graph-meta-tags-to-wordpress-themes-150x150.png" class="social-share-link" title="Share "How to Add Facebook Open Graph Meta Tags to WordPress Themes" via Pinterest" data-network-name="pinterest" data-share-title="How to Add Facebook Open Graph Meta Tags to WordPress Themes" data-share-url="https://wordpresswebsitesupport.com/how-to-add-facebook-open-graph-meta-tags-to-wordpress-themes/"> <span class="et-extra-icon et-extra-icon-pinterest et-extra-icon-background-hover" ></span> </a><a href="http://www.linkedin.com/shareArticle?mini=true&url=https://wordpresswebsitesupport.com/how-to-add-facebook-open-graph-meta-tags-to-wordpress-themes/&title=How%20to%20Add%20Facebook%20Open%20Graph%20Meta%20Tags%20to%20WordPress%20Themes" class="social-share-link" title="Share "How to Add Facebook Open Graph Meta Tags to WordPress Themes" via LinkedIn" data-network-name="linkedin" data-share-title="How to Add Facebook Open Graph Meta Tags to WordPress Themes" data-share-url="https://wordpresswebsitesupport.com/how-to-add-facebook-open-graph-meta-tags-to-wordpress-themes/"> <span class="et-extra-icon et-extra-icon-linkedin et-extra-icon-background-hover" ></span> </a><a href="https://bufferapp.com/add?url=https://wordpresswebsitesupport.com/how-to-add-facebook-open-graph-meta-tags-to-wordpress-themes/&title=How%20to%20Add%20Facebook%20Open%20Graph%20Meta%20Tags%20to%20WordPress%20Themes" class="social-share-link" title="Share "How to Add Facebook Open Graph Meta Tags to WordPress Themes" via Buffer" data-network-name="buffer" data-share-title="How to Add Facebook Open Graph Meta Tags to WordPress Themes" data-share-url="https://wordpresswebsitesupport.com/how-to-add-facebook-open-graph-meta-tags-to-wordpress-themes/"> <span class="et-extra-icon et-extra-icon-buffer et-extra-icon-background-hover" ></span> </a><a href="http://www.stumbleupon.com/badge?url=https://wordpresswebsitesupport.com/how-to-add-facebook-open-graph-meta-tags-to-wordpress-themes/&title=How%20to%20Add%20Facebook%20Open%20Graph%20Meta%20Tags%20to%20WordPress%20Themes" class="social-share-link" title="Share "How to Add Facebook Open Graph Meta Tags to WordPress Themes" via Stumbleupon" data-network-name="stumbleupon" data-share-title="How to Add Facebook Open Graph Meta Tags to WordPress Themes" data-share-url="https://wordpresswebsitesupport.com/how-to-add-facebook-open-graph-meta-tags-to-wordpress-themes/"> <span class="et-extra-icon et-extra-icon-stumbleupon et-extra-icon-background-hover" ></span> </a><a href="#" class="social-share-link" title="Share "How to Add Facebook Open Graph Meta Tags to WordPress Themes" via Email" data-network-name="basic_email" data-share-title="How to Add Facebook Open Graph Meta Tags to WordPress Themes" data-share-url="https://wordpresswebsitesupport.com/how-to-add-facebook-open-graph-meta-tags-to-wordpress-themes/"> <span class="et-extra-icon et-extra-icon-basic_email et-extra-icon-background-hover" ></span> </a><a href="#" class="social-share-link" title="Share "How to Add Facebook Open Graph Meta Tags to WordPress Themes" via Print" data-network-name="basic_print" data-share-title="How to Add Facebook Open Graph Meta Tags to WordPress Themes" data-share-url="https://wordpresswebsitesupport.com/how-to-add-facebook-open-graph-meta-tags-to-wordpress-themes/"> <span class="et-extra-icon et-extra-icon-basic_print et-extra-icon-background-hover" ></span> </a> </div> <div class="rating-stars"> <p id="rate-title" class="rate-title">Rate:</p><div id="rating-stars"></div><input type="hidden" id="post_id" value="3990" /> </div> <style type="text/css" id="rating-stars"> .post-footer .rating-stars #rated-stars img.star-on, .post-footer .rating-stars #rating-stars img.star-on { background-color: #dd9933; } </style> </div> <div class="et_pb_extra_row etad post_below"> <a href="https://www.wpbeginner.com/beginners-guide/what-is-a-blog-and-how-is-it-different-from-a-website-explained/#"><img src="https://122.201.118.70/~wpwscom/wp-content/uploads/2019/02/ad1.jpg" alt="Advertisement"></a> </div> </article> <nav class="post-nav"> <div class="nav-links clearfix"> <div class="nav-link nav-link-prev"> <a href="https://wordpresswebsitesupport.com/a-to-z-of-wordpress-terminology-for-beginners-to-advanced/" rel="prev"><span class="button">Previous</span><span class="title">A to Z of WordPress Terminology for Beginners to Advanced</span></a> </div> <div class="nav-link nav-link-next"> <a href="https://wordpresswebsitesupport.com/9-email-templates-every-web-developer-should-keep-handy/" rel="next"><span class="button">Next</span><span class="title">9 Email Templates Every Web Developer Should Keep Handy</span></a> </div> </div> </nav> <div class="et_extra_other_module author-box vcard"> <div class="author-box-header"> <h3>About The Author</h3> </div> <div class="author-box-content clearfix"> <div class="author-box-avatar"> <img alt='David Attard' src='https://secure.gravatar.com/avatar/f460c00546cc7c716368ccb71345a9c4?s=170&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/f460c00546cc7c716368ccb71345a9c4?s=340&d=mm&r=g 2x' class='avatar avatar-170 photo' height='170' width='170' loading='lazy'/> </div> <div class="author-box-description"> <h4><a class="author-link url fn" href="https://wordpresswebsitesupport.com/author/david-attard/" rel="author" title="View all posts by David Attard">David Attard</a></h4> <p class="note"></p> <ul class="social-icons"> </ul> </div> </div> </div> <div class="et_extra_other_module related-posts"> <div class="related-posts-header"> <h3>Related Posts</h3> </div> <div class="related-posts-content clearfix"> <div class="related-post"> <div class="featured-image"><a href="https://wordpresswebsitesupport.com/how-to-use-cookie-retargeting-in-wordpress-to-show-custom-on-site-messages/" title="How to Use Cookie Retargeting in WordPress to Show Custom On-Site Messages" class="post-thumbnail"> <img src="https://wordpresswebsitesupport.com/wp-content/uploads/2020/03/4656/how-to-use-cookie-retargeting-in-wordpress-to-show-custom-on-site-messages-440x264.png" alt="How to Use Cookie Retargeting in WordPress to Show Custom On-Site Messages" /><span class="et_pb_extra_overlay"></span> </a></div> <h4 class="title"><a href="https://wordpresswebsitesupport.com/how-to-use-cookie-retargeting-in-wordpress-to-show-custom-on-site-messages/">How to Use Cookie Retargeting in WordPress to Show Custom On-Site Messages</a></h4> <p class="date"><span class="updated">March 2, 2020</span></p> </div> <div class="related-post"> <div class="featured-image"><a href="https://wordpresswebsitesupport.com/how-to-run-a-social-media-contest-to-grow-your-site-best-practices-examples/" title="How to Run a Social Media Contest to Grow Your Site (Best Practices + Examples)" class="post-thumbnail"> <img src="https://wordpresswebsitesupport.com/wp-content/uploads/2020/07/5884/how-to-run-a-social-media-contest-to-grow-your-site-best-practices-examples-440x264.png" alt="How to Run a Social Media Contest to Grow Your Site (Best Practices + Examples)" /><span class="et_pb_extra_overlay"></span> </a></div> <h4 class="title"><a href="https://wordpresswebsitesupport.com/how-to-run-a-social-media-contest-to-grow-your-site-best-practices-examples/">How to Run a Social Media Contest to Grow Your Site (Best Practices + Examples)</a></h4> <p class="date"><span class="updated">July 30, 2020</span></p> </div> <div class="related-post"> <div class="featured-image"><a href="https://wordpresswebsitesupport.com/7-best-wordpress-rsvp-plugins-for-your-website/" title="7 Best WordPress RSVP Plugins for Your Website" class="post-thumbnail"> <img src="https://wordpresswebsitesupport.com/wp-content/uploads/2024/03/15490-7-best-wordpress-rsvp-plugins-for-your-website-440x264.png" alt="7 Best WordPress RSVP Plugins for Your Website" /><span class="et_pb_extra_overlay"></span> </a></div> <h4 class="title"><a href="https://wordpresswebsitesupport.com/7-best-wordpress-rsvp-plugins-for-your-website/">7 Best WordPress RSVP Plugins for Your Website</a></h4> <p class="date"><span class="updated">March 4, 2024</span></p> </div> <div class="related-post"> <div class="featured-image"><a href="https://wordpresswebsitesupport.com/is-wordpress-dying-the-state-of-wordpress-2023-edition/" title="Is WordPress Dying? The State of WordPress 2023 Edition" class="post-thumbnail"> <img src="https://wordpresswebsitesupport.com/wp-content/uploads/2023/08/14440-is-wordpress-dying-the-state-of-wordpress-2023-edition-440x264.png" alt="Is WordPress Dying? The State of WordPress 2023 Edition" /><span class="et_pb_extra_overlay"></span> </a></div> <h4 class="title"><a href="https://wordpresswebsitesupport.com/is-wordpress-dying-the-state-of-wordpress-2023-edition/">Is WordPress Dying? The State of WordPress 2023 Edition</a></h4> <p class="date"><span class="updated">August 24, 2023</span></p> </div> </div> </div> </div><!-- /.et_pb_extra_column.et_pb_extra_column_main --> <div class="et_pb_extra_column_sidebar"> <div id="search-2" class="et_pb_widget widget_search"><h4 class="widgettitle"> </h4><form role="search" method="get" class="search-form" action="https://wordpresswebsitesupport.com/"> <label> <span class="screen-reader-text">Search for:</span> <input type="search" class="search-field" placeholder="Search …" value="" name="s" /> </label> <input type="submit" class="search-submit" value="Search" /> </form></div> <!-- end .et_pb_widget --> <div id="et-recent-posts-2" class="et_pb_widget widget_et_recent_entries"> <h4 class="widgettitle">Recent Posts</h4> <ul class="widget_list"> <li> <a href="https://wordpresswebsitesupport.com/117-maestro-stevens-on-inclusivity-in-website-design-decisions/" title="117 – Maestro Stevens on Inclusivity in Website Design Decisions" class="widget_list_thumbnail"> <img src="https://wordpresswebsitesupport.com/wp-content/uploads/2024/04/15744-117-maestro-stevens-on-inclusivity-in-website-design-decisions-150x150.jpeg" alt="117 – Maestro Stevens on Inclusivity in Website Design Decisions" /> </a> <div class="post_info"> <a href="https://wordpresswebsitesupport.com/117-maestro-stevens-on-inclusivity-in-website-design-decisions/" class="title">117 – Maestro Stevens on Inclusivity in Website Design Decisions</a> <div class="post-meta"> <span class="updated">Apr 25, 2024</span> | <a href="https://wordpresswebsitesupport.com/category/uncategorized/" rel="tag">Uncategorized</a> </div> </div> </li> <li> <a href="https://wordpresswebsitesupport.com/are-popups-still-relevant-the-future-of-popup-marketing-explored/" title="Are Popups Still Relevant? The Future of Popup Marketing Explored" class="widget_list_thumbnail"> <img src="https://wordpresswebsitesupport.com/wp-content/uploads/2024/04/15738-are-popups-still-relevant-the-future-of-popup-marketing-explored-150x150.png" alt="Are Popups Still Relevant? The Future of Popup Marketing Explored" /> </a> <div class="post_info"> <a href="https://wordpresswebsitesupport.com/are-popups-still-relevant-the-future-of-popup-marketing-explored/" class="title">Are Popups Still Relevant? The Future of Popup Marketing Explored</a> <div class="post-meta"> <span class="updated">Apr 25, 2024</span> | <a href="https://wordpresswebsitesupport.com/category/tips-and-tutorials/" rel="tag">Tips and Tutorials</a> </div> </div> </li> <li> <a href="https://wordpresswebsitesupport.com/how-to-successfully-deregister-anonymous-functions-in-wordpress/" title="How to Successfully Deregister Anonymous Functions in WordPress" class="widget_list_thumbnail"> <img src="https://wordpresswebsitesupport.com/wp-content/uploads/2024/04/15742-how-to-successfully-deregister-anonymous-functions-in-wordpress-150x150.png" alt="How to Successfully Deregister Anonymous Functions in WordPress" /> </a> <div class="post_info"> <a href="https://wordpresswebsitesupport.com/how-to-successfully-deregister-anonymous-functions-in-wordpress/" class="title">How to Successfully Deregister Anonymous Functions in WordPress</a> <div class="post-meta"> <span class="updated">Apr 24, 2024</span> | <a href="https://wordpresswebsitesupport.com/category/themes/" rel="tag">Themes</a> </div> </div> </li> <li> <a href="https://wordpresswebsitesupport.com/how-to-use-smtp-server-to-send-wordpress-emails/" title="How to Use SMTP Server to Send WordPress Emails" class="widget_list_thumbnail"> <img src="https://wordpresswebsitesupport.com/wp-content/uploads/2024/04/15740-how-to-use-smtp-server-to-send-wordpress-emails-150x150.png" alt="How to Use SMTP Server to Send WordPress Emails" /> </a> <div class="post_info"> <a href="https://wordpresswebsitesupport.com/how-to-use-smtp-server-to-send-wordpress-emails/" class="title">How to Use SMTP Server to Send WordPress Emails</a> <div class="post-meta"> <span class="updated">Apr 24, 2024</span> | <a href="https://wordpresswebsitesupport.com/category/tips-and-tutorials/" rel="tag">Tips and Tutorials</a> </div> </div> </li> <li> <a href="https://wordpresswebsitesupport.com/meet-studio-your-new-favorite-way-to-develop-wordpress-locally/" title="Meet Studio: Your New Favorite Way to Develop WordPress Locally" class="widget_list_thumbnail"> <img src="https://wordpresswebsitesupport.com/wp-content/uploads/2024/04/15736-meet-studio-your-new-favorite-way-to-develop-wordpress-locally-150x150.jpg" alt="Meet Studio: Your New Favorite Way to Develop WordPress Locally" /> </a> <div class="post_info"> <a href="https://wordpresswebsitesupport.com/meet-studio-your-new-favorite-way-to-develop-wordpress-locally/" class="title">Meet Studio: Your New Favorite Way to Develop WordPress Locally</a> <div class="post-meta"> <span class="updated">Apr 24, 2024</span> | <a href="https://wordpresswebsitesupport.com/category/themes/" rel="tag">Themes</a> </div> </div> </li> </ul> </div> <!-- end .et_pb_widget --><div id="et_social_followers-2" class="et_pb_widget widget_et_social_followers"><h4 class="widgettitle">Follow Us</h4> <div class="widget_content"> <ul class="widget_list"> <li> <a class="et-extra-icon et-extra-icon-facebook et-extra-icon-background social-icon" href="https://www.facebook.com/WordPress-Website-Support-710362776093543/"></a> <a href="https://www.facebook.com/WordPress-Website-Support-710362776093543/" class="widget_list_social"> <h3 class="title">Facebook</h3> </a> </li> <li> <a class="et-extra-icon et-extra-icon-twitter et-extra-icon-background social-icon" href="https://twitter.com/wordpresswebsi5"></a> <a href="https://twitter.com/wordpresswebsi5" class="widget_list_social"> <h3 class="title">Twitter</h3> </a> </li> </ul> </div> </div> <!-- end .et_pb_widget --><div id="categories-2" class="et_pb_widget widget_categories"><h4 class="widgettitle">Categories</h4> <ul> <li class="cat-item cat-item-9"><a href="https://wordpresswebsitesupport.com/category/latest-news/">Latest News</a> </li> <li class="cat-item cat-item-14"><a href="https://wordpresswebsitesupport.com/category/marketing/">Marketing</a> </li> <li class="cat-item cat-item-10"><a href="https://wordpresswebsitesupport.com/category/plugins/">Plugins</a> </li> <li class="cat-item cat-item-13"><a href="https://wordpresswebsitesupport.com/category/security/">Security</a> </li> <li class="cat-item cat-item-93"><a href="https://wordpresswebsitesupport.com/category/trusted-suppliers/security-trusted-suppliers/">Security</a> </li> <li class="cat-item cat-item-11"><a href="https://wordpresswebsitesupport.com/category/themes/">Themes</a> </li> <li class="cat-item cat-item-43"><a href="https://wordpresswebsitesupport.com/category/tips-and-tricks/">Tips and Tricks</a> </li> <li class="cat-item cat-item-12"><a href="https://wordpresswebsitesupport.com/category/tips-and-tutorials/">Tips and Tutorials</a> </li> <li class="cat-item cat-item-92"><a href="https://wordpresswebsitesupport.com/category/trusted-suppliers/">Trusted Suppliers</a> </li> <li class="cat-item cat-item-1"><a href="https://wordpresswebsitesupport.com/category/uncategorized/">Uncategorized</a> </li> <li class="cat-item cat-item-94"><a href="https://wordpresswebsitesupport.com/category/trusted-suppliers/vpn/">VPN</a> </li> </ul> </div> <!-- end .et_pb_widget --><div id="archives-2" class="et_pb_widget widget_archive"><h4 class="widgettitle">Archives</h4> <ul> <li><a href='https://wordpresswebsitesupport.com/2024/04/'>April 2024</a> (51)</li> <li><a href='https://wordpresswebsitesupport.com/2024/03/'>March 2024</a> (83)</li> <li><a href='https://wordpresswebsitesupport.com/2024/02/'>February 2024</a> (83)</li> <li><a href='https://wordpresswebsitesupport.com/2024/01/'>January 2024</a> (66)</li> <li><a href='https://wordpresswebsitesupport.com/2023/12/'>December 2023</a> (60)</li> <li><a href='https://wordpresswebsitesupport.com/2023/11/'>November 2023</a> (87)</li> <li><a href='https://wordpresswebsitesupport.com/2023/10/'>October 2023</a> (94)</li> <li><a href='https://wordpresswebsitesupport.com/2023/09/'>September 2023</a> (93)</li> <li><a href='https://wordpresswebsitesupport.com/2023/08/'>August 2023</a> (107)</li> <li><a href='https://wordpresswebsitesupport.com/2023/07/'>July 2023</a> (84)</li> <li><a href='https://wordpresswebsitesupport.com/2023/06/'>June 2023</a> (92)</li> <li><a href='https://wordpresswebsitesupport.com/2023/05/'>May 2023</a> (96)</li> <li><a href='https://wordpresswebsitesupport.com/2023/04/'>April 2023</a> (101)</li> <li><a href='https://wordpresswebsitesupport.com/2023/03/'>March 2023</a> (109)</li> <li><a href='https://wordpresswebsitesupport.com/2023/02/'>February 2023</a> (89)</li> <li><a href='https://wordpresswebsitesupport.com/2023/01/'>January 2023</a> (101)</li> <li><a href='https://wordpresswebsitesupport.com/2022/12/'>December 2022</a> (96)</li> <li><a href='https://wordpresswebsitesupport.com/2022/11/'>November 2022</a> (101)</li> <li><a href='https://wordpresswebsitesupport.com/2022/10/'>October 2022</a> (95)</li> <li><a href='https://wordpresswebsitesupport.com/2022/09/'>September 2022</a> (101)</li> <li><a href='https://wordpresswebsitesupport.com/2022/08/'>August 2022</a> (107)</li> <li><a href='https://wordpresswebsitesupport.com/2022/07/'>July 2022</a> (100)</li> <li><a href='https://wordpresswebsitesupport.com/2022/06/'>June 2022</a> (75)</li> <li><a href='https://wordpresswebsitesupport.com/2022/05/'>May 2022</a> (84)</li> <li><a href='https://wordpresswebsitesupport.com/2022/04/'>April 2022</a> (111)</li> <li><a href='https://wordpresswebsitesupport.com/2022/03/'>March 2022</a> (103)</li> <li><a href='https://wordpresswebsitesupport.com/2022/02/'>February 2022</a> (128)</li> <li><a href='https://wordpresswebsitesupport.com/2022/01/'>January 2022</a> (132)</li> <li><a href='https://wordpresswebsitesupport.com/2021/12/'>December 2021</a> (93)</li> <li><a href='https://wordpresswebsitesupport.com/2021/11/'>November 2021</a> (93)</li> <li><a href='https://wordpresswebsitesupport.com/2021/10/'>October 2021</a> (106)</li> <li><a href='https://wordpresswebsitesupport.com/2021/09/'>September 2021</a> (108)</li> <li><a href='https://wordpresswebsitesupport.com/2021/08/'>August 2021</a> (95)</li> <li><a href='https://wordpresswebsitesupport.com/2021/07/'>July 2021</a> (115)</li> <li><a href='https://wordpresswebsitesupport.com/2021/06/'>June 2021</a> (108)</li> <li><a href='https://wordpresswebsitesupport.com/2021/05/'>May 2021</a> (100)</li> <li><a href='https://wordpresswebsitesupport.com/2021/04/'>April 2021</a> (107)</li> <li><a href='https://wordpresswebsitesupport.com/2021/03/'>March 2021</a> (118)</li> <li><a href='https://wordpresswebsitesupport.com/2021/02/'>February 2021</a> (103)</li> <li><a href='https://wordpresswebsitesupport.com/2021/01/'>January 2021</a> (122)</li> <li><a href='https://wordpresswebsitesupport.com/2020/12/'>December 2020</a> (97)</li> <li><a href='https://wordpresswebsitesupport.com/2020/11/'>November 2020</a> (90)</li> <li><a href='https://wordpresswebsitesupport.com/2020/10/'>October 2020</a> (117)</li> <li><a href='https://wordpresswebsitesupport.com/2020/09/'>September 2020</a> (110)</li> <li><a href='https://wordpresswebsitesupport.com/2020/08/'>August 2020</a> (126)</li> <li><a href='https://wordpresswebsitesupport.com/2020/07/'>July 2020</a> (117)</li> <li><a href='https://wordpresswebsitesupport.com/2020/06/'>June 2020</a> (121)</li> <li><a href='https://wordpresswebsitesupport.com/2020/05/'>May 2020</a> (117)</li> <li><a href='https://wordpresswebsitesupport.com/2020/04/'>April 2020</a> (127)</li> <li><a href='https://wordpresswebsitesupport.com/2020/03/'>March 2020</a> (98)</li> <li><a href='https://wordpresswebsitesupport.com/2020/02/'>February 2020</a> (78)</li> <li><a href='https://wordpresswebsitesupport.com/2020/01/'>January 2020</a> (79)</li> <li><a href='https://wordpresswebsitesupport.com/2019/12/'>December 2019</a> (84)</li> <li><a href='https://wordpresswebsitesupport.com/2019/11/'>November 2019</a> (86)</li> <li><a href='https://wordpresswebsitesupport.com/2019/10/'>October 2019</a> (118)</li> <li><a href='https://wordpresswebsitesupport.com/2019/09/'>September 2019</a> (129)</li> <li><a href='https://wordpresswebsitesupport.com/2019/08/'>August 2019</a> (138)</li> <li><a href='https://wordpresswebsitesupport.com/2019/07/'>July 2019</a> (112)</li> <li><a href='https://wordpresswebsitesupport.com/2019/06/'>June 2019</a> (134)</li> <li><a href='https://wordpresswebsitesupport.com/2019/05/'>May 2019</a> (162)</li> <li><a href='https://wordpresswebsitesupport.com/2019/04/'>April 2019</a> (86)</li> <li><a href='https://wordpresswebsitesupport.com/2019/03/'>March 2019</a> (85)</li> <li><a href='https://wordpresswebsitesupport.com/2019/02/'>February 2019</a> (38)</li> <li><a href='https://wordpresswebsitesupport.com/2019/01/'>January 2019</a> (10)</li> <li><a href='https://wordpresswebsitesupport.com/2018/12/'>December 2018</a> (3)</li> <li><a href='https://wordpresswebsitesupport.com/2018/11/'>November 2018</a> (5)</li> <li><a href='https://wordpresswebsitesupport.com/2018/09/'>September 2018</a> (1)</li> <li><a href='https://wordpresswebsitesupport.com/2018/08/'>August 2018</a> (2)</li> <li><a href='https://wordpresswebsitesupport.com/2018/07/'>July 2018</a> (2)</li> <li><a href='https://wordpresswebsitesupport.com/2018/06/'>June 2018</a> (6)</li> <li><a href='https://wordpresswebsitesupport.com/2018/05/'>May 2018</a> (2)</li> <li><a href='https://wordpresswebsitesupport.com/2018/04/'>April 2018</a> (2)</li> <li><a href='https://wordpresswebsitesupport.com/2018/03/'>March 2018</a> (6)</li> <li><a href='https://wordpresswebsitesupport.com/2018/02/'>February 2018</a> (4)</li> <li><a href='https://wordpresswebsitesupport.com/2018/01/'>January 2018</a> (3)</li> <li><a href='https://wordpresswebsitesupport.com/2017/12/'>December 2017</a> (3)</li> <li><a href='https://wordpresswebsitesupport.com/2017/11/'>November 2017</a> (2)</li> <li><a href='https://wordpresswebsitesupport.com/2017/10/'>October 2017</a> (4)</li> <li><a href='https://wordpresswebsitesupport.com/2017/09/'>September 2017</a> (5)</li> <li><a href='https://wordpresswebsitesupport.com/2017/08/'>August 2017</a> (4)</li> <li><a href='https://wordpresswebsitesupport.com/2017/07/'>July 2017</a> (8)</li> <li><a href='https://wordpresswebsitesupport.com/2017/06/'>June 2017</a> (8)</li> <li><a href='https://wordpresswebsitesupport.com/2017/05/'>May 2017</a> (5)</li> <li><a href='https://wordpresswebsitesupport.com/2017/04/'>April 2017</a> (8)</li> <li><a href='https://wordpresswebsitesupport.com/2017/03/'>March 2017</a> (6)</li> <li><a href='https://wordpresswebsitesupport.com/2017/02/'>February 2017</a> (2)</li> <li><a href='https://wordpresswebsitesupport.com/2017/01/'>January 2017</a> (4)</li> <li><a href='https://wordpresswebsitesupport.com/2016/12/'>December 2016</a> (5)</li> <li><a href='https://wordpresswebsitesupport.com/2016/11/'>November 2016</a> (4)</li> <li><a href='https://wordpresswebsitesupport.com/2016/10/'>October 2016</a> (4)</li> <li><a href='https://wordpresswebsitesupport.com/2016/09/'>September 2016</a> (5)</li> <li><a href='https://wordpresswebsitesupport.com/2016/08/'>August 2016</a> (3)</li> <li><a href='https://wordpresswebsitesupport.com/2016/07/'>July 2016</a> (6)</li> <li><a href='https://wordpresswebsitesupport.com/2016/06/'>June 2016</a> (5)</li> <li><a href='https://wordpresswebsitesupport.com/2016/05/'>May 2016</a> (5)</li> <li><a href='https://wordpresswebsitesupport.com/2016/04/'>April 2016</a> (7)</li> <li><a href='https://wordpresswebsitesupport.com/2016/03/'>March 2016</a> (5)</li> <li><a href='https://wordpresswebsitesupport.com/2016/02/'>February 2016</a> (5)</li> <li><a href='https://wordpresswebsitesupport.com/2016/01/'>January 2016</a> (6)</li> <li><a href='https://wordpresswebsitesupport.com/2015/12/'>December 2015</a> (3)</li> <li><a href='https://wordpresswebsitesupport.com/2015/11/'>November 2015</a> (2)</li> <li><a href='https://wordpresswebsitesupport.com/2015/10/'>October 2015</a> (3)</li> <li><a href='https://wordpresswebsitesupport.com/2015/09/'>September 2015</a> (4)</li> <li><a href='https://wordpresswebsitesupport.com/2015/08/'>August 2015</a> (5)</li> <li><a href='https://wordpresswebsitesupport.com/2015/07/'>July 2015</a> (3)</li> <li><a href='https://wordpresswebsitesupport.com/2015/06/'>June 2015</a> (3)</li> <li><a href='https://wordpresswebsitesupport.com/2015/05/'>May 2015</a> (4)</li> <li><a href='https://wordpresswebsitesupport.com/2015/04/'>April 2015</a> (8)</li> <li><a href='https://wordpresswebsitesupport.com/2015/03/'>March 2015</a> (7)</li> <li><a href='https://wordpresswebsitesupport.com/2015/02/'>February 2015</a> (6)</li> <li><a href='https://wordpresswebsitesupport.com/2015/01/'>January 2015</a> (4)</li> <li><a href='https://wordpresswebsitesupport.com/2014/12/'>December 2014</a> (6)</li> <li><a href='https://wordpresswebsitesupport.com/2014/11/'>November 2014</a> (2)</li> <li><a href='https://wordpresswebsitesupport.com/2014/10/'>October 2014</a> (8)</li> <li><a href='https://wordpresswebsitesupport.com/2014/09/'>September 2014</a> (1)</li> <li><a href='https://wordpresswebsitesupport.com/2014/08/'>August 2014</a> (6)</li> <li><a href='https://wordpresswebsitesupport.com/2014/06/'>June 2014</a> (4)</li> <li><a href='https://wordpresswebsitesupport.com/2014/05/'>May 2014</a> (1)</li> <li><a href='https://wordpresswebsitesupport.com/2014/04/'>April 2014</a> (6)</li> <li><a href='https://wordpresswebsitesupport.com/2014/03/'>March 2014</a> (7)</li> <li><a href='https://wordpresswebsitesupport.com/2014/02/'>February 2014</a> (7)</li> <li><a href='https://wordpresswebsitesupport.com/2014/01/'>January 2014</a> (2)</li> <li><a href='https://wordpresswebsitesupport.com/2013/11/'>November 2013</a> (1)</li> <li><a href='https://wordpresswebsitesupport.com/2013/10/'>October 2013</a> (3)</li> <li><a href='https://wordpresswebsitesupport.com/2013/09/'>September 2013</a> (1)</li> <li><a href='https://wordpresswebsitesupport.com/2013/07/'>July 2013</a> (1)</li> <li><a href='https://wordpresswebsitesupport.com/2013/06/'>June 2013</a> (1)</li> <li><a href='https://wordpresswebsitesupport.com/2013/01/'>January 2013</a> (1)</li> <li><a href='https://wordpresswebsitesupport.com/2012/12/'>December 2012</a> (2)</li> <li><a href='https://wordpresswebsitesupport.com/2012/10/'>October 2012</a> (2)</li> <li><a href='https://wordpresswebsitesupport.com/2012/09/'>September 2012</a> (4)</li> <li><a href='https://wordpresswebsitesupport.com/2012/08/'>August 2012</a> (2)</li> <li><a href='https://wordpresswebsitesupport.com/2012/07/'>July 2012</a> (5)</li> <li><a href='https://wordpresswebsitesupport.com/2012/06/'>June 2012</a> (2)</li> <li><a href='https://wordpresswebsitesupport.com/2012/04/'>April 2012</a> (2)</li> <li><a href='https://wordpresswebsitesupport.com/2012/03/'>March 2012</a> (1)</li> <li><a href='https://wordpresswebsitesupport.com/2012/02/'>February 2012</a> (1)</li> <li><a href='https://wordpresswebsitesupport.com/2012/01/'>January 2012</a> (5)</li> <li><a href='https://wordpresswebsitesupport.com/2011/12/'>December 2011</a> (8)</li> <li><a href='https://wordpresswebsitesupport.com/2011/11/'>November 2011</a> (3)</li> <li><a href='https://wordpresswebsitesupport.com/2011/10/'>October 2011</a> (2)</li> <li><a href='https://wordpresswebsitesupport.com/2011/09/'>September 2011</a> (1)</li> <li><a href='https://wordpresswebsitesupport.com/2011/07/'>July 2011</a> (2)</li> <li><a href='https://wordpresswebsitesupport.com/2011/03/'>March 2011</a> (3)</li> <li><a href='https://wordpresswebsitesupport.com/2011/02/'>February 2011</a> (1)</li> <li><a href='https://wordpresswebsitesupport.com/2010/11/'>November 2010</a> (1)</li> <li><a href='https://wordpresswebsitesupport.com/2010/05/'>May 2010</a> (2)</li> <li><a href='https://wordpresswebsitesupport.com/2010/04/'>April 2010</a> (1)</li> <li><a href='https://wordpresswebsitesupport.com/2010/01/'>January 2010</a> (1)</li> </ul> </div> <!-- end .et_pb_widget --></div> </div> <!-- #content-area --> </div> <!-- .container --> </div> <!-- #main-content --> <footer id="footer" class="footer_columns_3"> <div class="et_pb_section et_pb_section_1 et_pb_with_background et_section_regular" > <div class="et_pb_row et_pb_row_0 et_pb_row_fullwidth"> <div class="et_pb_column et_pb_column_1_5 et_pb_column_0 et_pb_css_mix_blend_mode_passthrough"> <div class="et_pb_module et_pb_image et_pb_image_0"> <span class="et_pb_image_wrap "><img src="https://wordpresswebsitesupport.com/wp-content/uploads/2019/05/favicon-2.png" alt="" title="" height="auto" width="auto" srcset="https://wordpresswebsitesupport.com/wp-content/uploads/2019/05/favicon-2.png 688w, https://wordpresswebsitesupport.com/wp-content/uploads/2019/05/favicon-2-300x254.png 300w, https://wordpresswebsitesupport.com/wp-content/uploads/2019/05/favicon-2-172x146.png 172w, https://wordpresswebsitesupport.com/wp-content/uploads/2019/05/favicon-2-600x508.png 600w" sizes="(max-width: 688px) 100vw, 688px" class="wp-image-1795" /></span> </div><div class="et_pb_module et_pb_text et_pb_text_0 et_pb_text_align_left et_pb_bg_layout_light"> <div class="et_pb_text_inner"><p><span></span></p> <p><span></span>Wordpress Website Support For Wordpress News and Support</p></div> </div> <!-- .et_pb_text --> </div> <!-- .et_pb_column --><div class="et_pb_column et_pb_column_1_5 et_pb_column_1 et_pb_css_mix_blend_mode_passthrough"> <div class="et_pb_module et_pb_text et_pb_text_1 et_pb_text_align_left et_pb_bg_layout_light"> <div class="et_pb_text_inner"><p>Explore</p></div> </div> <!-- .et_pb_text --><div class="et_pb_module et_pb_text et_pb_text_2 et_pb_text_align_left et_pb_bg_layout_light"> <div class="et_pb_text_inner"><p><ul id="footer-menu" class="menu"><li id="menu-item-790" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-790"><a href="https://wordpresswebsitesupport.com/">Home</a></li> <li id="menu-item-791" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-791"><a href="https://wordpresswebsitesupport.com/about-us/">About us</a></li> <li id="menu-item-792" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-792"><a href="https://wordpresswebsitesupport.com/contact-us/">Contact</a></li> </ul></p></div> </div> <!-- .et_pb_text --> </div> <!-- .et_pb_column --><div class="et_pb_column et_pb_column_1_5 et_pb_column_2 et_pb_css_mix_blend_mode_passthrough"> <div class="et_pb_module et_pb_text et_pb_text_3 et_pb_text_align_left et_pb_bg_layout_light"> <div class="et_pb_text_inner"><p>.</p></div> </div> <!-- .et_pb_text --><div class="et_pb_module et_pb_text et_pb_text_4 et_pb_text_align_left et_pb_bg_layout_light"> <div class="et_pb_text_inner"><p><ul id="footer-menu" class="menu"><li id="menu-item-1405" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1405"><a href="https://wordpresswebsitesupport.com/premium-support-2/">Premium Support</a></li> <li id="menu-item-1406" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1406"><a href="https://wordpresswebsitesupport.com/wordpress-tips-and-tricks/">WordPress Tips and Tricks</a></li> <li id="menu-item-1683" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1683"><a href="https://wordpresswebsitesupport.com/latest-news/">Latest News</a></li> </ul></p></div> </div> <!-- .et_pb_text --> </div> <!-- .et_pb_column --><div class="et_pb_column et_pb_column_1_5 et_pb_column_3 et_pb_css_mix_blend_mode_passthrough et_pb_column_empty"> </div> <!-- .et_pb_column --><div class="et_pb_column et_pb_column_1_5 et_pb_column_4 et_pb_css_mix_blend_mode_passthrough et-last-child"> <div class="et_pb_module et_pb_text et_pb_text_5 et_pb_text_align_left et_pb_bg_layout_light"> <div class="et_pb_text_inner"><p>Follow</p></div> </div> <!-- .et_pb_text --><div class="et_pb_module et_pb_text et_pb_text_6 et_pb_text_align_left et_pb_bg_layout_light"> <div class="et_pb_text_inner"><p><ul id="footer-menu" class="menu"><li id="menu-item-810" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-810"><a href="https://twitter.com/wordpresswebsi5">Twitter</a></li> <li id="menu-item-809" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-809"><a href="https://www.facebook.com/WordPress-Website-Support-710362776093543/">Facebook</a></li> </ul></p></div> </div> <!-- .et_pb_text --> </div> <!-- .et_pb_column --> </div> <!-- .et_pb_row --> </div> <!-- .et_pb_section --> <div class="et_pb_section et_pb_section_3 et_pb_with_background et_section_regular" > <div class="et_pb_row et_pb_row_1 et_pb_row_fullwidth"> <div class="et_pb_column et_pb_column_4_4 et_pb_column_5 et_pb_css_mix_blend_mode_passthrough et-last-child"> <div class="et_pb_module et_pb_text et_pb_text_7 et_pb_text_align_center et_pb_bg_layout_light"> <div class="et_pb_text_inner"><p>Copyright © 2019 Wordpress Website Support</p></div> </div> <!-- .et_pb_text --> </div> <!-- .et_pb_column --> </div> <!-- .et_pb_row --> </div> <!-- .et_pb_section --> </footer> </div> <!-- #page-container --> <span title="Back To Top" id="back_to_top"></span> <script type="text/javascript"> var $zoho=$zoho || {};$zoho.salesiq = $zoho.salesiq || {widgetcode:"ccaea6a4f95a5ebf37bc9752a593427059b4fed183933578f04762340fb36af7", values:{},ready:function(){}}; var d=document;s=d.createElement("script");s.type="text/javascript";s.id="zsiqscript";s.defer=true; s.src="https://salesiq.zoho.com/widget";t=d.getElementsByTagName("script")[0];t.parentNode.insertBefore(s,t);d.write("<div id='zsiqwidget'></div>"); </script> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.css" /> <script src="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.js"></script> <script type="text/javascript"> jQuery('.course-left-content a.img_link').fancybox({ smallBtn : true, loop : true }).attr('data-fancybox', 'gallery'); </script> <script type="text/javascript"> (function () { var c = document.body.className; c = c.replace(/woocommerce-no-js/, 'woocommerce-js'); document.body.className = c; })() </script> <script type='text/javascript' id='contact-form-7-js-extra'> /* <![CDATA[ */ var wpcf7 = {"apiSettings":{"root":"https:\/\/wordpresswebsitesupport.com\/wp-json\/contact-form-7\/v1","namespace":"contact-form-7\/v1"}}; /* ]]> */ </script> <script type='text/javascript' src='https://wordpresswebsitesupport.com/wp-content/plugins/contact-form-7/includes/js/scripts.js?ver=5.3.2' id='contact-form-7-js'></script> <script type='text/javascript' id='df-script-js-extra'> /* <![CDATA[ */ var dvServerResponse = ["<!DOCTYPE html>\n<!--[if lt IE 7]> <html class=\"no-js ie6 oldie\" lang=\"en-US\"> <![endif]-->\n<!--[if IE 7]> <html class=\"no-js ie7 oldie\" lang=\"en-US\"> <![endif]-->\n<!--[if IE 8]> <html class=\"no-js ie8 oldie\" lang=\"en-US\"> <![endif]-->\n<!--[if gt IE 8]><!--> <html class=\"no-js\" lang=\"en-US\"> <!--<![endif]-->\n<head>\n<meta http-equiv=\"refresh\" content=\"0\">\n\n<title>danielvoelk.de | 521: Web server is down<\/title>\n<meta charset=\"UTF-8\" \/>\n<meta http-equiv=\"Content-Type\" content=\"text\/html; charset=UTF-8\" \/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge\" \/>\n<meta name=\"robots\" content=\"noindex, nofollow\" \/>\n<meta name=\"viewport\" content=\"width=device-width,initial-scale=1\" \/>\n<link rel=\"stylesheet\" id=\"cf_styles-css\" href=\"\/cdn-cgi\/styles\/main.css\" \/>\n\n\n<\/head>\n<body data-rsssl=1>\n<div id=\"cf-wrapper\">\n <div id=\"cf-error-details\" class=\"p-0\">\n <header class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-8\">\n <h1 class=\"inline-block sm:block sm:mb-2 font-light text-60 lg:text-4xl text-black-dark leading-tight mr-2\">\n <span class=\"inline-block\">Web server is down<\/span>\n <span class=\"code-label\">Error code 521<\/span>\n <\/h1>\n <div>\n Visit <a href=\"https:\/\/www.cloudflare.com\/5xx-error-landing?utm_source=errorcode_521&utm_campaign=danielvoelk.de\" target=\"_blank\" rel=\"noopener noreferrer\">cloudflare.com<\/a> for more information.\n <\/div>\n <div class=\"mt-3\">2024-03-23 14:03:37 UTC<\/div>\n <\/header>\n <div class=\"my-8 bg-gradient-gray\">\n <div class=\"w-240 lg:w-full mx-auto\">\n <div class=\"clearfix md:px-8\">\n \n<div id=\"cf-browser-status\" class=\" relative w-1\/3 md:w-full py-15 md:p-0 md:py-8 md:text-left md:border-solid md:border-0 md:border-b md:border-gray-400 overflow-hidden float-left md:float-none text-center\">\n <div class=\"relative mb-10 md:m-0\">\n \n <span class=\"cf-icon-browser block md:hidden h-20 bg-center bg-no-repeat\"><\/span>\n <span class=\"cf-icon-ok w-12 h-12 absolute left-1\/2 md:left-auto md:right-0 md:top-0 -ml-6 -bottom-4\"><\/span>\n \n <\/div>\n <span class=\"md:block w-full truncate\">You<\/span>\n <h3 class=\"md:inline-block mt-3 md:mt-0 text-2xl text-gray-600 font-light leading-1.3\">\n \n Browser\n \n <\/h3>\n <span class=\"leading-1.3 text-2xl text-green-success\">Working<\/span>\n<\/div>\n\n<div id=\"cf-cloudflare-status\" class=\" relative w-1\/3 md:w-full py-15 md:p-0 md:py-8 md:text-left md:border-solid md:border-0 md:border-b md:border-gray-400 overflow-hidden float-left md:float-none text-center\">\n <div class=\"relative mb-10 md:m-0\">\n <a href=\"https:\/\/www.cloudflare.com\/5xx-error-landing?utm_source=errorcode_521&utm_campaign=danielvoelk.de\" target=\"_blank\" rel=\"noopener noreferrer\">\n <span class=\"cf-icon-cloud block md:hidden h-20 bg-center bg-no-repeat\"><\/span>\n <span class=\"cf-icon-ok w-12 h-12 absolute left-1\/2 md:left-auto md:right-0 md:top-0 -ml-6 -bottom-4\"><\/span>\n <\/a>\n <\/div>\n <span class=\"md:block w-full truncate\">Sydney<\/span>\n <h3 class=\"md:inline-block mt-3 md:mt-0 text-2xl text-gray-600 font-light leading-1.3\">\n <a href=\"https:\/\/www.cloudflare.com\/5xx-error-landing?utm_source=errorcode_521&utm_campaign=danielvoelk.de\" target=\"_blank\" rel=\"noopener noreferrer\">\n Cloudflare\n <\/a>\n <\/h3>\n <span class=\"leading-1.3 text-2xl text-green-success\">Working<\/span>\n<\/div>\n\n<div id=\"cf-host-status\" class=\"cf-error-source relative w-1\/3 md:w-full py-15 md:p-0 md:py-8 md:text-left md:border-solid md:border-0 md:border-b md:border-gray-400 overflow-hidden float-left md:float-none text-center\">\n <div class=\"relative mb-10 md:m-0\">\n \n <span class=\"cf-icon-server block md:hidden h-20 bg-center bg-no-repeat\"><\/span>\n <span class=\"cf-icon-error w-12 h-12 absolute left-1\/2 md:left-auto md:right-0 md:top-0 -ml-6 -bottom-4\"><\/span>\n \n <\/div>\n <span class=\"md:block w-full truncate\">danielvoelk.de<\/span>\n <h3 class=\"md:inline-block mt-3 md:mt-0 text-2xl text-gray-600 font-light leading-1.3\">\n \n Host\n \n <\/h3>\n <span class=\"leading-1.3 text-2xl text-red-error\">Error<\/span>\n<\/div>\n\n <\/div>\n <\/div>\n <\/div>\n\n <div class=\"w-240 lg:w-full mx-auto mb-8 lg:px-8\">\n <div class=\"clearfix\">\n <div class=\"w-1\/2 md:w-full float-left pr-6 md:pb-10 md:pr-0 leading-relaxed\">\n <h2 class=\"text-3xl font-normal leading-1.3 mb-4\">What happened?<\/h2>\n <p>The web server is not returning a connection. As a result, the web page is not displaying.<\/p>\n <\/div>\n <div class=\"w-1\/2 md:w-full float-left leading-relaxed\">\n <h2 class=\"text-3xl font-normal leading-1.3 mb-4\">What can I do?<\/h2>\n <h3 class=\"text-15 font-semibold mb-2\">If you are a visitor of this website:<\/h3>\n <p class=\"mb-6\">Please try again in a few minutes.<\/p>\n\n <h3 class=\"text-15 font-semibold mb-2\">If you are the owner of this website:<\/h3>\n <p><span>Contact your hosting provider letting them know your web server is not responding.<\/span> <a rel=\"noopener noreferrer\" href=\"https:\/\/support.cloudflare.com\/hc\/en-us\/articles\/200171916-Error-521\">Additional troubleshooting information<\/a>.<\/p>\n <\/div>\n <\/div>\n <\/div>\n\n <div class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300\">\n <p class=\"text-13\">\n <span class=\"cf-footer-item sm:block sm:mb-1\">Cloudflare Ray ID: <strong class=\"font-semibold\">868ef7483874a7f9<\/strong><\/span>\n <span class=\"cf-footer-separator sm:hidden\">\u2022<\/span>\n <span id=\"cf-footer-item-ip\" class=\"cf-footer-item hidden sm:block sm:mb-1\">\n Your IP:\n <button type=\"button\" id=\"cf-footer-ip-reveal\" class=\"cf-footer-ip-reveal-btn\">Click to reveal<\/button>\n <span class=\"hidden\" id=\"cf-footer-ip\">45.63.30.65<\/span>\n <span class=\"cf-footer-separator sm:hidden\">\u2022<\/span>\n <\/span>\n <span class=\"cf-footer-item sm:block sm:mb-1\"><span>Performance & security by<\/span> <a rel=\"noopener noreferrer\" href=\"https:\/\/www.cloudflare.com\/5xx-error-landing?utm_source=errorcode_521&utm_campaign=danielvoelk.de\" id=\"brand_link\" target=\"_blank\">Cloudflare<\/a><\/span>\n \n <\/p>\n <script>(function(){function d(){var b=a.getElementById(\"cf-footer-item-ip\"),c=a.getElementById(\"cf-footer-ip-reveal\");b&&\"classList\"in b&&(b.classList.remove(\"hidden\"),c.addEventListener(\"click\",function(){c.classList.add(\"hidden\");a.getElementById(\"cf-footer-ip\").classList.remove(\"hidden\")}))}var a=document;document.addEventListener&&a.addEventListener(\"DOMContentLoaded\",d)})();<\/script>\n<\/div><!-- \/.error-footer -->\n\n\n <\/div>\n<\/div>\n<\/body>\n<\/html>\n"]; /* ]]> */ </script> <script type='text/javascript' src='https://wordpresswebsitesupport.com/wp-content/plugins/divifilter/df-script.js?ver=3.8.4' id='df-script-js'></script> <script type='text/javascript' src='https://wordpresswebsitesupport.com/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js?ver=2.70' id='jquery-blockui-js'></script> <script type='text/javascript' id='wc-add-to-cart-js-extra'> /* <![CDATA[ */ var wc_add_to_cart_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%","i18n_view_cart":"View cart","cart_url":"https:\/\/wordpresswebsitesupport.com\/cart\/","is_cart":"","cart_redirect_after_add":"yes"}; /* ]]> */ </script> <script type='text/javascript' src='https://wordpresswebsitesupport.com/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js?ver=4.9.2' id='wc-add-to-cart-js'></script> <script type='text/javascript' src='https://wordpresswebsitesupport.com/wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js?ver=2.1.4' id='js-cookie-js'></script> <script type='text/javascript' id='woocommerce-js-extra'> /* <![CDATA[ */ var woocommerce_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%"}; /* ]]> */ </script> <script type='text/javascript' src='https://wordpresswebsitesupport.com/wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js?ver=4.9.2' id='woocommerce-js'></script> <script type='text/javascript' id='wc-cart-fragments-js-extra'> /* <![CDATA[ */ var wc_cart_fragments_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%","cart_hash_key":"wc_cart_hash_2377bacda1bb70f179809fe5269b234b","fragment_name":"wc_fragments_2377bacda1bb70f179809fe5269b234b","request_timeout":"5000"}; /* ]]> */ </script> <script type='text/javascript' src='https://wordpresswebsitesupport.com/wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.min.js?ver=4.9.2' id='wc-cart-fragments-js'></script> <script type='text/javascript' id='wc-cart-fragments-js-after'> jQuery( 'body' ).bind( 'wc_fragments_refreshed', function() { var jetpackLazyImagesLoadEvent; try { jetpackLazyImagesLoadEvent = new Event( 'jetpack-lazy-images-load', { bubbles: true, cancelable: true } ); } catch ( e ) { jetpackLazyImagesLoadEvent = document.createEvent( 'Event' ) jetpackLazyImagesLoadEvent.initEvent( 'jetpack-lazy-images-load', true, true ); } jQuery( 'body' ).get( 0 ).dispatchEvent( jetpackLazyImagesLoadEvent ); } ); </script> <script type='text/javascript' src='https://wordpresswebsitesupport.com/wp-includes/js/jquery/ui/core.min.js?ver=1.12.1' id='jquery-ui-core-js'></script> <script type='text/javascript' src='https://wordpresswebsitesupport.com/wp-includes/js/jquery/ui/tabs.min.js?ver=1.12.1' id='jquery-ui-tabs-js'></script> <script type='text/javascript' src='https://wordpresswebsitesupport.com/wp-content/plugins/woothemes-sensei/assets/js/user-dashboard.min.js?ver=1.9.15' id='woothemes-sensei-user-dashboard-js'></script> <script type='text/javascript' id='google-invisible-recaptcha-js-before'> var renderInvisibleReCaptcha = function() { for (var i = 0; i < document.forms.length; ++i) { var form = document.forms[i]; var holder = form.querySelector('.inv-recaptcha-holder'); if (null === holder) continue; holder.innerHTML = ''; (function(frm){ var cf7SubmitElm = frm.querySelector('.wpcf7-submit'); var holderId = grecaptcha.render(holder,{ 'sitekey': '6LccArsUAAAAAOm8XzJ4JwsZlCAbO0FwzeWl1JmP', 'size': 'invisible', 'badge' : 'bottomright', 'callback' : function (recaptchaToken) { if((null !== cf7SubmitElm) && (typeof jQuery != 'undefined')){jQuery(frm).submit();grecaptcha.reset(holderId);return;} HTMLFormElement.prototype.submit.call(frm); }, 'expired-callback' : function(){grecaptcha.reset(holderId);} }); if(null !== cf7SubmitElm && (typeof jQuery != 'undefined') ){ jQuery(cf7SubmitElm).off('click').on('click', function(clickEvt){ clickEvt.preventDefault(); grecaptcha.execute(holderId); }); } else { frm.onsubmit = function (evt){evt.preventDefault();grecaptcha.execute(holderId);}; } })(form); } }; </script> <script type='text/javascript' async defer src='https://www.google.com/recaptcha/api.js?onload=renderInvisibleReCaptcha&render=explicit' id='google-invisible-recaptcha-js'></script> <script type='text/javascript' src='https://www.google.com/recaptcha/api.js?render=6LdBR9oZAAAAAJG-XbDlie77ITSv0nQBNf_x-GD_&ver=3.0' id='google-recaptcha-js'></script> <script type='text/javascript' id='wpcf7-recaptcha-js-extra'> /* <![CDATA[ */ var wpcf7_recaptcha = {"sitekey":"6LdBR9oZAAAAAJG-XbDlie77ITSv0nQBNf_x-GD_","actions":{"homepage":"homepage","contactform":"contactform"}}; /* ]]> */ </script> <script type='text/javascript' src='https://wordpresswebsitesupport.com/wp-content/plugins/contact-form-7/modules/recaptcha/script.js?ver=5.3.2' id='wpcf7-recaptcha-js'></script> <script type='text/javascript' src='https://wordpresswebsitesupport.com/wp-content/themes/extra-child/vendor/OwlCarousel2-2.2.0/owl.carousel.min.js' id='owl-carousel-js'></script> <script type='text/javascript' src='https://wordpresswebsitesupport.com/wp-content/themes/extra-child/custom-script.js' id='child-script-js'></script> <script type='text/javascript' src='https://wordpresswebsitesupport.com/wp-includes/js/masonry.min.js?ver=4.2.2' id='masonry-js'></script> <script type='text/javascript' id='extra-scripts-js-extra'> /* <![CDATA[ */ var EXTRA = {"images_uri":"https:\/\/wordpresswebsitesupport.com\/wp-content\/themes\/Extra\/images\/","ajaxurl":"https:\/\/wordpresswebsitesupport.com\/wp-admin\/admin-ajax.php","your_rating":"Your Rating:","item_in_cart_count":"%d Item in Cart","items_in_cart_count":"%d Items in Cart","item_count":"%d Item","items_count":"%d Items","rating_nonce":"4d9e209df3","timeline_nonce":"b068200ba8","blog_feed_nonce":"e0f84aa43b","error":"There was a problem, please try again.","contact_error_name_required":"Name field cannot be empty.","contact_error_email_required":"Email field cannot be empty.","contact_error_email_invalid":"Please enter a valid email address.","is_ab_testing_active":"","is_cache_plugin_active":"no"}; var et_shortcodes_strings = {"previous":"Previous","next":"Next"}; var et_pb_custom = {"ajaxurl":"https:\/\/wordpresswebsitesupport.com\/wp-admin\/admin-ajax.php","images_uri":"https:\/\/wordpresswebsitesupport.com\/wp-content\/themes\/Extra\/images","builder_images_uri":"https:\/\/wordpresswebsitesupport.com\/wp-content\/themes\/Extra\/includes\/builder\/images","et_frontend_nonce":"6939fcf18f","subscription_failed":"Please, check the fields below to make sure you entered the correct information.","et_ab_log_nonce":"2b8eecdc07","fill_message":"Please, fill in the following fields:","contact_error_message":"Please, fix the following errors:","invalid":"Invalid email","captcha":"Captcha","prev":"Prev","previous":"Previous","next":"Next","wrong_captcha":"You entered the wrong number in captcha.","wrong_checkbox":"Checkbox","ignore_waypoints":"no","is_divi_theme_used":"","widget_search_selector":".widget_search","ab_tests":[],"is_ab_testing_active":"","page_id":"3990","unique_test_id":"","ab_bounce_rate":"5","is_cache_plugin_active":"no","is_shortcode_tracking":"","tinymce_uri":""}; var et_builder_utils_params = {"condition":{"diviTheme":false,"extraTheme":true},"scrollLocations":["app","top"],"builderScrollLocations":{"desktop":"app","tablet":"app","phone":"app"},"onloadScrollLocation":"app","builderType":"fe"}; var et_frontend_scripts = {"builderCssContainerPrefix":"#et-boc","builderCssLayoutPrefix":"#et-boc .et-l"}; var et_pb_box_shadow_elements = []; var et_pb_motion_elements = {"desktop":[],"tablet":[],"phone":[]}; var et_pb_sticky_elements = []; /* ]]> */ </script> <script type='text/javascript' src='https://wordpresswebsitesupport.com/wp-content/themes/Extra/scripts/scripts.unified.js?ver=4.8.2' id='extra-scripts-js'></script> <script type='text/javascript' src='https://wordpresswebsitesupport.com/wp-content/themes/Extra/core/admin/js/common.js?ver=4.8.2' id='et-core-common-js'></script> <script type='text/javascript' src='https://wordpresswebsitesupport.com/wp-includes/js/wp-embed.min.js?ver=5.6.13' id='wp-embed-js'></script> <style id="et-builder-module-design-3990-cached-inline-styles">.et_pb_section_1{padding-top:12px;padding-right:0px;padding-bottom:0px;padding-left:0px}.et_pb_section_0{padding-top:12px;padding-right:0px;padding-bottom:0px;padding-left:0px}.et_pb_section_1.et_pb_section{background-color:#191919!important}.et_pb_row_0.et_pb_row{padding-top:27.3125px!important;padding-right:0px!important;padding-bottom:17px!important;padding-left:0px!important;padding-top:27.3125px;padding-right:0px;padding-bottom:17px;padding-left:0}.et_pb_image_0{margin-bottom:9px!important;max-width:43%;text-align:left;margin-left:0}.et_pb_text_1.et_pb_text{color:#FFFFFF!important}.et_pb_text_4.et_pb_text{color:#FFFFFF!important}.et_pb_text_5.et_pb_text{color:#FFFFFF!important}.et_pb_text_0.et_pb_text{color:#FFFFFF!important}.et_pb_text_7.et_pb_text{color:#FFFFFF!important}.et_pb_text_0{font-size:16px}.et_pb_text_5{font-weight:600;font-size:24px}.et_pb_text_1{font-weight:600;font-size:24px}.et_pb_text_3{font-weight:600;font-size:24px}.et_pb_text_1 h2{font-variant:small-caps;color:#FFFFFF!important}.et_pb_text_3 h2{font-variant:small-caps;color:#FFFFFF!important}.et_pb_text_5 h2{font-variant:small-caps;color:#FFFFFF!important}.et_pb_text_3.et_pb_text{color:#191919!important}.et_pb_section_3{padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px}.et_pb_section_3.et_pb_section{background-color:#000000!important}.et_pb_row_1.et_pb_row{padding-top:16px!important;padding-right:0px!important;padding-bottom:15px!important;padding-left:0px!important;padding-top:16px;padding-right:0px;padding-bottom:15px;padding-left:0px}.et_pb_text_7{font-size:12px}.et_pb_column_0{padding-right:0px;padding-left:0px}.et_pb_column_1{padding-left:80px}@media only screen and (min-width:981px){.et_pb_row_0,.page .et_pb_row_0.et_pb_row,.single .et_pb_row_0.et_pb_row{width:89%}.et_pb_row_1,.page .et_pb_row_1.et_pb_row,.single .et_pb_row_1.et_pb_row{width:89%}.et_pb_row_0{max-width:89%}.et_pb_row_1{max-width:89%}}@media only screen and (max-width:980px){.et_pb_row_0,.page .et_pb_row_0.et_pb_row,.single .et_pb_row_0.et_pb_row{width:80%}.et_pb_row_1,.page .et_pb_row_1.et_pb_row,.single .et_pb_row_1.et_pb_row{width:80%}.et_pb_row_0{max-width:80%}.et_pb_row_1{max-width:80%}.et_pb_image_0{text-align:center;margin-left:auto;margin-right:auto}}</style><script type="text/javascript">window.NREUM||(NREUM={});NREUM.info={"beacon":"bam.nr-data.net","licenseKey":"NRJS-6e83b71928a03500b87","applicationID":"991006077","transactionName":"M1ADNUdRWENTV0MLXgoaIAJBWVleHUdeDFYIUEwRWkNC","queueTime":0,"applicationTime":1091,"atts":"HxcAQw9LS00=","errorBeacon":"bam.nr-data.net","agent":""}</script></body> </html>