| Server IP : 14.225.204.176 / Your IP : 216.73.216.252 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/zinisoft.net/wp-content/plugins/fusion-builder.bak/js/ |
Upload File : |
/**
* Rank Math SEO Integration
*/
( function( $ ) {
const FusionRankMath = function() {
this.pluginName = 'fusion-rank-math-integration';
this.hooks();
this.events();
this.getContent = this.getContent.bind( this );
};
FusionRankMath.prototype.hooks = function() {
wp.hooks.addFilter( 'rank_math_content', this.pluginName, this.getContent );
};
FusionRankMath.prototype.getContent = function() {
const content = $( '#fusion-builder-rendered-content' ).val();
return content;
};
FusionRankMath.prototype.events = function() {
$( document ).on( 'fusion-builder-content-updated', function() {
$.post( window.fusionBuilderConfig.rest_url + 'awb/rendered_content', { content: window.fusionBuilderGetContent( 'content' ) }, function( result ) {
$( '#fusion-builder-rendered-content' ).val( result.content );
setTimeout( () => {
window.rankMathEditor.refresh( 'content' );
}, 100 );
} );
} );
};
$( document ).one( 'fusion-builder-content-updated', function() {
// Check if rank math is active.
if ( 'undefined' !== typeof window.rankMathEditor ) {
new FusionRankMath();
}
} );
}( jQuery ) );