Hey guys, firstly thanks if you’ve taken the time to try and help out here!
I’ve recently bought this plugin: Pro Panel Wordpress Themes Options Panel
It’s a brilliant item, however one of the functions is to ‘select page from a drop down menu’. I for some reason can only echo the page slug: /what-we-do
I want to echo the_title and the_content.
<?php
// Value from Wordpress Page Dropdown
$blockwho = get_option('good_blockwho');
echo $blockwho;
?>
The above code outputs the slug (its the code given to me in the documentation).
Apologies if this is a newbie question, and thanks again for taking the time to read/help!

