<?php // Compare current page to see if we are on the register page. $current_page = trailingslashit( wpmem_current_url() ); $register_page = trailingslashit( wpmem_register_url() ); if ( $current_page == $register_page ) { echo 'you are on the registration page'; }