Generate Sitemap after removing JetPack
Have you tried reinitializing the permalinks? Settings > Permalinks > Save Changes
Have you tried reinitializing the permalinks? Settings > Permalinks > Save Changes
Although it will not fix the error, if your goal is to just remove it from view you could edit your wp_config file and above the stop editing line put the following: ini_set(‘display_errors’,’Off’); ini_set(‘error_reporting’, E_ALL ); define(‘WP_DEBUG’, false); define(‘WP_DEBUG_DISPLAY’, false); As far as whats happening from what I can guess there was a post type … Read more
Make Jetpack CDN to filter/ignore images based on SRC [closed]
Jetpack: Access visitor stats in templete
Footnotes with dynamic title attributes?
I don’t think it’s documented, but you can probably use _stq.push. Here’s what I see on one of my sites with WordPress.com Stats: _stq.push([ ‘view’, {v:’ext’,j:’1:3.8.2′,blog:’1234567′,post:’123′,tz:’3′,srv:’example.org’} ]);
Probably through Jetpack, yet I’m not sure Looking at your site now I can say that those open graph tags are from Jetpack Plugin. If there is no image available in the post , Jetpack adds site-icon/favicon as the default one. We can control output of tags using filters jetpack_open_graph_tags jetpack_images_get_images jetpack_open_graph_image_default jetpack_enable_open_graph Remove only … Read more
I am using Disqus and can anwser for this platform : 1) You have the option to save comments both on Disqus and locally on WordPress. 2) This way, if you want to switch to default comments, they will already be there. On the other side, you cal also import local comments to Disqus, if … Read more
As @Pieter Goosen said, you shouldn’t be using query_posts, nor running your own query. Instead, override the main query that already runs: function wpse_144974_pre_get_posts( $wp_query ) { if ( ! is_admin() && $wp_query->is_main_query() && is_home() ) $wp_query->set( ‘cat’, 1 ); } add_action( ‘pre_get_posts’, ‘wpse_144974_pre_get_posts’ );
The code you used should work. BTW to me, as the code is not working, the best approach would be to unset the og:url from Jetpack and do it on your own? I’m taking your code and adding mine and editing where necessary: <?php /** * Change HTTPS to HTTP * @param string $url Default … Read more