andrezrv
11/17/2017 - 6:25 PM

fix-yoast-smart-issue.php

<?php // Ignore this line.
add_action( 'save_post',   'nice_fix_yoast_seo_loading', -999 );
add_action( 'delete_post', 'nice_fix_yoast_seo_loading', -999 );

function nice_fix_yoast_seo_loading() {
	if ( ! class_exists( 'WPSEO_Link_Watcher' ) ) {
		return;
	}

	nice_loader( 'includes/public/theming/' );
}