I saw this in an email titled Why You Must Avoid Nulled WordPress Themes & Plugins (9 Reasons). Now, I in my heyday did my share of downloading pirated stuff for use on my web page and other uses like music (remember Napster? Oh, I’m the old person here?) and software. Not so much anymore, for several… Continue Reading “Avoid “Nulled” WordPress Themes”
Tag: wordpress
Activated Shortcode use in comments
With much thanks to Aldo, the author of PRIVATE CONTENT SHORTCODE!
He posted in the support forum the answer to my question about using PRIVATE SHORTCODE in comments.
Simply add this line in the file functions.php of current theme:
… Continue Reading “Activated Shortcode use in comments”
Footer “Powered by” removed
I don’t know how or why the fu*k registrations evident from extraneous locations have started up ever since I made the domain point to this WP site (as opposed to the old PHP-Fusion site). Is it the “powered by WordPress” footer statement that is pinging on hacker radar?
… Continue Reading “Footer “Powered by” removed”
Do WordPress sites get trash registrations by nature??
I haven’t stood up and run a WP blog site in quite a while, so I don’t know what the trend is among WordPress sites with respect to usership and the attraction of hackers and other potential troublemakers. But I’ve had this install up and running for a while now as I move content to it from the … Continue Reading “Do WordPress sites get trash registrations by nature??”
~ Restricted ~
** Content is restricted viewing **… Continue Reading “~ Restricted ~”
WP Tags functionality
I found info on stackoverflow.com on how to remove the option for tags in the posts and from the sidebar. I added this code to functions.php:
add_action('init', 'remove_tags');
function remove_tags(){
register_taxonomy('post_tag', array());
}
Why did I remove tags? Biggest reason is, and I know it’s… Continue Reading “WP Tags functionality”
Common WordPress Errors & Fixes
After happening to browse thru a site called MyThemeShop for WP themes, I got this email about common WP errors and fixes that’s on their site. I thought this may come in handy in the (near?) future as I fiddle more and more with this WP platform.… Continue Reading “Common WordPress Errors & Fixes”
Added Categories as a Dropdown Menu
I found info on WPTAVERN about how to create a dropdown menu of blog categories without plugin or code. I guess I want to make the right sidebar less crowded.
See, this is the thing I enjoy more with WP than in my experiences with PHP-F. More people using WP and so more ideas, more how-to’s, etc.. And much more… Continue Reading “Added Categories as a Dropdown Menu”
Disabled Revisions
I disabled post revisions following this WPBeginner page. I went into wp-config.php and added:
define(
'AUTOSAVE_INTERVAL'
, 300 );
// seconds
define(
'WP_POST_REVISIONS'
, false );
DELETE
FROM wp_posts WHERE post_type
Enabled Blogroll Links Manager
UPDATE: Nope, I deleted it. Blogroll links are not cutting it for what I want to do with links. Using regular posts and URL link to do it for my internal link referencing.
I enabled the links manager following instructions from a site called Template Toaster. I added the line:
add_filter( 'pre_option_link_manager_enabled',… Continue Reading “Enabled Blogroll Links Manager”