If you prefer using a custom WordPress template for using the Triggering Keywords and their values, here is the way to go:
Here below is a sample code to show how to use the keys in your own template.
...
/** Template Name: Keyword Landing Page Generator **/
get_header();
...
global $WPSOS_KLPG;
//Check if the method exists
if( method_exists( $WPSOS_KLPG, 'get_keyword_values' ) ){
//Take the set array by the key value from the query vars, load 'default' if not found
$key_array = $WPSOS_KLPG->get_keyword_values( get_query_var( 'wpsos_mkey', 'default' ) );
}
else {
//Otherwise load an empty array
$key_array = array();
}
...
//Display the corresponding text of 'main-heading' configured under the Shortcode Settings
echo $key_array['main-heading'];
...
//Display the corresponding text of 'content' configured under the Shortcode Settings
echo $key_array['content'];
//Your content
...