This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function buddyboss_is_learndash_brand_logo() | |
{ | |
global $post; | |
if (class_exists('B2BDash_Public')) { | |
$b2bdash = new B2BDash_Public(1, 1); | |
if (!empty($b2bdash->b2bdash_custom_logo())) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (class_exists('B2BDash_Public')) { | |
$b2bdash = new B2BDash_Public(1, 1); | |
if (!empty($b2bdash->b2bdash_custom_logo())) { | |
$logo_id = $b2bdash->b2bdash_custom_logo(); | |
$logo_dark_id = $b2bdash->b2bdash_custom_logo(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
A simple script to quickly anonymise the users of a WordPress website. | |
It works by replacing all of your existing users with new randomly generated user details. | |
Simply add this file to the root directory of your WordPress installation, then go to <<your website address/>>/anonymise-users.php |