<?php if( !is_page_template(‘no-menu-page-template.php’) : ?>
<?php endif; ?>
<?php if( !is_page_template(‘no-menu-page-template.php’) : ?>
<?php endif; ?>
Use this plugin for that đ very easy to use
It will make your wordpress website as new as before and remove all data.
https://wordpress.org/plugins/wordpress-database-reset/
**
* Disable WordPress theme update checks
* If there is a theme in the repo with the same name,
* this prevents WP from prompting an update.
*
* @link http://markjaquith.wordpress.com/2009/12/14/excluding-your-plugin-or-theme-from-update-checks/
* @author Mark Jaquith
* @since 1.0.0
*
**/
function afn_prevent_theme_update( $r, $url ) {
if ( 0 !== strpos( $url, ‘http://api.wordpress.org/themes/update-check’ ) )
return $r; // Not a theme update request. Bail immediately.
$themes = unserialize( $r[‘body’][‘themes’] );
unset( $themes[ get_option( ‘template’ ) ] );
unset( $themes[ get_option( ‘stylesheet’ ) ] );
$r[‘body’][‘themes’] = serialize( $themes );
return $r;
}
add_filter( ‘http_request_args’, ‘afn_prevent_theme_update’, 5, 2 );
1) First Find our cloak.php
plugins/AdTrackzGold/cloak.php
Then update all database configurations..
2) Then activate it from wordpress…
By default, user registration is disabled in WordPress. If you want to enable user registration in WordPress, go to Settings > General
and check the option that says, Anyone can register
.
In future, if you want to disable the user registration in WordPress, then just uncheck that option.
Also for removing bot. Use sabre plugin ….Â
Also for stop notification use
© 2018 Webdesigncr3ator
Theme by Anders Noren — Up ↑