Skip to content

Instantly share code, notes, and snippets.

View laxmariappan's full-sized avatar

Lax Mariappan laxmariappan

View GitHub Profile
@laxmariappan
laxmariappan / ultimate-member-profile-menu.php
Created July 19, 2020 04:08
WordPress Ultimate Member - Edit account and profile link on profile menu tabs
<?php
// taken from https://gist.github.com/ultimatemember/8cdaf61e7bd9de35512c#gistcomment-3034086
// tested - it works
// Filter
function um_add_custom_tabs( $tabs ) {
$tabs['account'] = array(
'name' => 'Edit Account',
'icon' => 'um-faicon-pencil',
'custom' => TRUE
);
@laxmariappan
laxmariappan / Wordpress_text_for_empty_content.php
Created February 15, 2019 06:38
Wordpress: Check if the_content is empty / return custom text only when the_content is empty
// Check if the content is empty and show a custom message //
add_filter('the_content', 'text_for_empty_content', 20, 1);
function text_for_empty_content($content){
if(empty($content)) // Check if the content is empty
return '<p>Under Construction</p>'; // Add your custom text or other HTML
else
return $content; // if content is there, just leave it as it is
}
/*