Skip to content

Instantly share code, notes, and snippets.

@wp-seopress
wp-seopress / oxygen-automatic-meta-description.php
Last active February 9, 2021 17:54
Automatic meta description for Oxygen Builder
//Oxygen Builder Generate automatic meta description
function sp_titles_template_variables_array($array) {
$array[] = '%%oxygen%%';
return $array;
}
add_filter('seopress_titles_template_variables_array', 'sp_titles_template_variables_array');
function sp_titles_template_replace_array($array) {
if ( is_plugin_active( 'oxygen/functions.php' ) && function_exists( 'ct_template_output' ) && ! isset( $_GET['ct_builder'] ) ) {
add_filter( 'wp_doing_ajax', '__return_true' );