What you need to do there (if I were in your place, I built a plugin or performed some functions. Hacking), it will capture the output of the included page and replace your specific "New Member" tag with what you need. In the example below, I'm going to use %NEW_MEMBER_NAME% instead of "New Member", which makes your replacement string more unique, so on your wp placeholder page you will write
"% NEW_MEMBER_NAME% comig soon".
<?php ?> <?php get_header(); ?> <div id="primary"> <div id="content" role="main"> <?php the_post();
Remember that itβs never a good idea in your templates to hard code things, as you are doing here with β112β, the id of your wp placeholder page and, presumably, the replacement tag% NEW_MEMBER_NAME%. You must branch out the theme and create an administration settings page for the two.
Hope this is for you in some way.
source share