I have a site on which I am using Oxygen page builder to build my pages. Oxygen page builder saves its shortcode in a separate table named “ct_builder_shortcodes”. I wanted to know whether SmartCrawl will properly index the pages created by Oxygen page builder.
For SEO Press, we have to add a code as follows to get the indexing done
add_filter( ‘seopress_content_analysis_content’, ‘sp_content_analysis_content’, 10, 2 );
/**
* Filter the analyzed content to add content from Oxygen editor.
* param string $content Current content in the WordPress editor.
* param int $id ID of the current entry.
* @return string Modified content.
*/
function sp_content_analysis_content( $content, $id ) {
// HTML of Oxygen’s content.
$cf = do_shortcode( get_post_meta( $id, ‘ct_builder_shortcodes’, true ) );
return $content . $cf;
}
Do we need to add anything like that to get the SmartCrawl working?
Please advise.