Add back the removed separator options in Yoast SEO

Add back the removed separator options in Yoast SEO on child sites.

Snippet Type

Execute on Child Sites

Snippet

function wptips_add_old_separators($separators){
            $separators['sc-pipe']   = array(
                'option' => '|',
                'label'  => __( 'Vertical bar', 'wordpress-seo' ),
            );
            $separators['sc-tilde']  = array(
                'option' => '~',
                'label'  => __( 'Small tilde', 'wordpress-seo' ),
            );
    return $separators;
}
add_filter('wpseo_separator_option_list', 'wptips_add_old_separators');

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.