42 Extremely Useful Tricks for the WordPress Functions File

Patient Tools

Read, save, and share this guide

Use these quick tools to make this medical article easier to read, print, save, or share with a family member.

Article Summary

The WordPress functions.php file is like a plugin for your WordPress theme, allowing you to add both simple and complex functionality to your site. Below are 42 extremely useful tricks that you can add to your WordPress functions.php file. Note: Always backup your website before editing the functions.php file, and consider developing on a staging environment first. Hide Admin Bar for Non-Admins php if (!current_user_can('manage_options'))...

Before reading

RX Patient Tools

Use these quick guides before reading the article, or return to them when you need help preparing questions for a doctor.

Start here Choose the right pathway for symptoms, reports, medicines, or urgent warning signs. Disease article roadmap Read this topic step by step: meaning, symptoms, warning signs, diagnosis, treatment, prevention, and follow-up. Treatment planner Prepare questions about treatment choices, benefits, risks, side effects, and follow-up. Family & caregiver guide Organize symptoms, reports, medicines, questions, and follow-up safely. Nutrition & diet guide Prepare food, hydration, supplement, and medicine-timing questions safely. Prevention guide Organize risk factors, protective habits, screening, and warning signs. Recovery guide Prepare a safe plan for activity, rehabilitation, warning signs, and follow-up.
Educational health guideWritten for patient understanding and clinical awareness.
Reviewed content workflowUse writer and reviewer profiles for stronger trust.
Emergency safety firstUrgent warning signs are highlighted below.
Definition

The WordPress functions.php file is like a plugin for your WordPress theme, allowing you to add both simple and complex functionality to your site. Below are 42 extremely useful tricks that you can add to your WordPress functions.php file.

Note: Always backup your website before editing the functions.php file, and consider developing on a environment first.

  1. Hide Admin Bar for Non-Admins
    php
    if (!current_user_can('manage_options')) {
    show_admin_bar(false);
    }
  2. Remove WordPress Version
    php
    remove_action('wp_head', 'wp_generator');
  3. Remove RSS Feed Links
    php
    remove_action('wp_head', 'feed_links', 2);
  4. Disable XML-RPC
    php
    add_filter('xmlrpc_enabled', '__return_false');
  5. Disable Self Pingbacks
    php
    function disable_self_ping(&$links) {
    foreach ($links as $l => $link)
    if (0 === strpos($link, get_option('home')))
    unset($links[$l]);
    }
    add_action('pre_ping', 'disable_self_ping');

Performance

  1. Limit Revisions
    php
    define('WP_POST_REVISIONS', 5);
  2. Remove Query Strings
    php
    function remove_query_strings() {
    if (!is_admin()) {
    add_filter('script_loader_src', 'remove_query_strings_split', 15);
    add_filter('style_loader_src', 'remove_query_strings_split', 15);
    }
    }
    function remove_query_strings_split($src){
    $output = preg_split("/(&ver|\?ver)/", $src);
    return $output[0];
    }
    add_action('init', 'remove_query_strings');

Customization

  1. Add Custom Logo Support
    php
    function theme_prefix_setup() {
    add_theme_support('custom-logo');
    }
    add_action('after_setup_theme', 'theme_prefix_setup');
  2. Custom Excerpt Length
    php
    function custom_excerpt_length($length) {
    return 20;
    }
    add_filter('excerpt_length', 'custom_excerpt_length', 999);
  3. Custom Excerpt Suffix
    php
    function custom_excerpt_more($more) {
    return '...';
    }
    add_filter('excerpt_more', 'custom_excerpt_more');
  4. Register New Sidebar
    php
    function custom_sidebar() {
    register_sidebar(array(
    'name' => __('Custom Sidebar'),
    'id' => 'custom-sidebar',
    ));
    }
    add_action('widgets_init', 'custom_sidebar');
  5. Custom Login Logo
    php
    function custom_login_logo() {
    echo '<style type="text/css">h1 a { background-image: url('.get_bloginfo('template_directory').'/images/logo.png) !important; }</style>';
    }
    add_action('login_head', 'custom_login_logo');

SEO and Social

  1. Add Open Graph Meta
    php
    function insert_open_graph_in_head() {
    // Your Open Graph Tags here
    }
    add_action('wp_head', 'insert_open_graph_in_head', 5);
  2. Add Canonical Tags
    php
    function rel_canonical() {
    if (!is_singular()) return;
    global $wp_the_query;
    if ($id = $wp_the_query->get_queried_object_id()) {
    $link = get_permalink($id);
    echo "\n<link rel='canonical' href='$link' />\n";
    }
    }
    add_action('wp_head', 'rel_canonical');
  3. Remove Yoast SEO Comment in Head
    php
    add_filter('wpseo_debug_markers', '__return_false');
  4. Add Twitter Cards
    php
    function add_twitter_cards() {
    // Your Twitter Card data here
    }
    add_action('wp_head', 'add_twitter_cards');

Security

  1. Disable File Editing from Dashboard
    php
    define('DISALLOW_FILE_EDIT', true);
  2. Remove Error Message on Login Page
    php
    function no_wordpress_errors(){
    return 'Something is wrong!';
    }
    add_filter('login_errors', 'no_wordpress_errors');
  3. Restrict Access to WP-Admin
    php
    function restrict_admin_access(){
    if (!current_user_can('manage_options') && '/wp-admin/admin-ajax.php' != $_SERVER['PHP_SELF']) {
    wp_redirect(home_url());
    }
    }
    add_action('admin_init', 'restrict_admin_access', 1);

Advanced Features

  1. Add Custom Post Type
    php
    function create_post_type() {
    register_post_type('my_custom_post',
    array('labels' => array('name' => __('My Custom Post')),
    'public' => true,
    )
    );
    }
    add_action('init', 'create_post_type');
  2. Custom Dashboard Widgets
    php
    function add_custom_dashboard_widgets() {
    wp_add_dashboard_widget('custom_help_widget', 'Theme Support', 'custom_dashboard_help');
    }
    function custom_dashboard_help() {
    echo '<p>Welcome to my custom dashboard widget.</p>';
    }
    add_action('wp_dashboard_setup', 'add_custom_dashboard_widgets');
  3. Register Custom Taxonomy
    php
    function create_custom_taxonomy() {
    $labels = array(
    'name' => _x('Taxonomies', 'taxonomy general name'),
    // Other labels here
    );
    register_taxonomy('taxonomy', array('post'), array(
    'label' => __('Custom Taxonomy'),
    'labels' => $labels,
    // Additional options here
    ));
    }
    add_action('init', 'create_custom_taxonomy', 0);

WooCommerce Customization

  1. Remove WooCommerce Breadcrumbs
    php
    remove_action('woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);
  2. Change Add to Cart Text on WooCommerce Button
    php
    add_filter('woocommerce_product_single_add_to_cart_text', 'woo_custom_cart_button_text');
    function woo_custom_cart_button_text() {
    return __('My Button Text', 'woocommerce');
    }
  3. Hide Out of Stock Items
    php
    add_filter('woocommerce_product_query_meta_query', 'hide_out_of_stock_items');
    function hide_out_of_stock_items($meta_query){
    $meta_query[] = array(
    'key' => '_stock_status',
    'value' => 'outofstock',
    'compare' => '!='
    );
    return $meta_query;
    }

Posts and Pages

  1. Change Read More Link
    php
    function modify_read_more_link() {
    return '<a class="more-link" href="' . get_permalink() . '">Your Read More Link Text</a>';
    }
    add_filter('the_content_more_link', 'modify_read_more_link');
  2. Add Featured Image Support
    php
    add_theme_support('post-thumbnails');
  3. Remove Sticky Post Class
    php
    function remove_sticky_class($classes) {
    if(in_array('sticky', $classes)) {
    $classes = array_diff($classes, array('sticky'));
    $classes[] = 'my-sticky';
    }
    return $classes;
    }
    add_filter('post_class','remove_sticky_class');
  4. Redirect To Home After Logout
    php
    function logout_redirect_home(){
    wp_redirect( home_url() );
    exit();
    }
    add_action('wp_logout','logout_redirect_home');

Miscellaneous

  1. Change Admin Footer Text
    php
    function custom_admin_footer_text () {
    echo 'Your custom admin footer text';
    }
    add_filter('admin_footer_text', 'custom_admin_footer_text');
  2. Disable WP Emojis
    php
    remove_action('wp_head', 'print_emoji_detection_script', 7);
    remove_action('wp_print_styles', 'print_emoji_styles');
  3. Enable SVG Uploads
    php
    function enable_svg_upload($mimes) {
    $mimes['svg'] = 'image/svg+xml';
    return $mimes;
    }
    add_filter('upload_mimes', 'enable_svg_upload');
  4. Disable WordPress Update Notifications for Specific Plugin
    php
    function disable_plugin_updates( $value ) {
    if ( isset($value) && is_object($value) && isset($value->response['plugin-folder/plugin-file.php']) ) {
    unset($value->response['plugin-folder/plugin-file.php']);
    }
    return $value;
    }
    add_filter('site_transient_update_plugins', 'disable_plugin_updates');
  5. Customize the Login Page URL
    php
    function custom_loginlogo_url($url) {
    return get_bloginfo('url');
    }
    add_filter('login_headerurl', 'custom_loginlogo_url');
  6. Add Categories to Attachments
    php
    function add_categories_to_attachments() {
    register_taxonomy_for_object_type( 'category', 'attachment' );
    }
    add_action( 'init' , 'add_categories_to_attachments' );
  7. Add Custom Role
    php
    add_role('custom_role', 'Custom Role', array('read' => true));
  8. Automatically Set the Featured Image
    php
    function autoset_featured_image() {
    global $post;
    if (!has_post_thumbnail($post->ID)) {
    $attached_image = get_children("post_parent=$post->ID&post_type=attachment&post_mime_type=image&numberposts=1");
    if ($attached_image) {
    foreach ($attached_image as $attachment_id => $attachment) {
    set_post_thumbnail($post->ID, $attachment_id);
    }
    }
    }
    }
    add_action('the_post', 'autoset_featured_image');
  9. Add Custom Image Sizes
    php
    function my_custom_sizes() {
    add_image_size('my-custom-size', 400, 300, true);
    }
    add_action('after_setup_theme', 'my_custom_sizes');
  10. Move jQuery to the Footer
    php
    function move_jquery_to_footer() {
    if (!is_admin()) {
    wp_deregister_script('jquery');
    wp_register_script('jquery', includes_url('/js/jquery/jquery.js'), false, null, true);
    wp_enqueue_script('jquery');
    }
    }
    add_action('wp_enqueue_scripts', 'move_jquery_to_footer');
  11. Change Howdy Text in Admin Bar
    php
    function replace_howdy($wp_admin_bar) {
    $my_account=$wp_admin_bar->get_node('my-account');
    $newtitle = str_replace('Howdy,', 'Welcome,', $my_account->title);
    $wp_admin_bar->add_node(array(
    'id' => 'my-account',
    'title' => $newtitle,
    ));
    }
    add_filter('admin_bar_menu', 'replace_howdy',25);
  12. Remove Unused Dashboard Widgets
    php
    function remove_dashboard_widgets() {
    global $wp_meta_boxes;
    unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']);
    unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']);
    }
    add_action('wp_dashboard_setup', 'remove_dashboard_widgets' );
  13. Change Admin Email Without Confirmation
    php
    add_filter( 'admin_email_check_interval', '__return_false' );
Doctor visit helper

Prepare before seeing a doctor

A simple rural-patient checklist to help you explain symptoms clearly, ask better questions, and avoid unsafe self-treatment.

Safety note: This is not a prescription or diagnosis. For severe symptoms, pregnancy danger signs, children with serious illness, chest pain, breathing difficulty, stroke-like weakness, or major injury, seek urgent care.

Which doctor may help?

Start with a registered doctor or the nearest qualified health center.

What to tell the doctor

  • Write when the problem started and how it changed.
  • Bring old prescriptions, investigation reports, and current medicines.
  • Write allergies, pregnancy status, diabetes, kidney/liver disease, and major past illnesses.
  • Bring one family member if the patient is weak, elderly, confused, or a child.

Questions to ask

  • What is the most likely cause of my symptoms?
  • Which danger signs mean I should go to hospital quickly?
  • Which tests are necessary now, and which can wait?
  • How should I take medicines safely and what side effects should I watch for?
  • When should I come for follow-up?

Tests to discuss

  • Vital signs: temperature, pulse, blood pressure, oxygen saturation
  • Basic physical examination by a clinician
  • CBC, urine test, blood sugar, or imaging only when clinically needed

Avoid these mistakes

  • Do not use antibiotics, steroid tablets/injections, or strong painkillers without proper medical advice.
  • Do not hide pregnancy, kidney disease, ulcer, allergy, or blood thinner use.
  • Do not delay emergency care when danger signs are present.

Medicine safety and first-aid guide

This section is for patient education only. It does not replace a doctor, pharmacist, or emergency care.

Safe first steps

  • Rest, drink safe water, and observe symptoms carefully.
  • Keep a written note of symptoms, duration, temperature, medicines already taken, and allergy history.
  • Seek medical care quickly if symptoms are severe, worsening, or unusual for the patient.

OTC medicine safety

  • For mild pain or fever, ask a registered pharmacist or doctor before using common over-the-counter pain/fever medicines.
  • Do not combine multiple pain medicines without advice, especially if you have kidney disease, liver disease, stomach ulcer, asthma, pregnancy, or take blood thinners.
  • Do not give adult medicines to children unless a qualified clinician advises it.

Avoid these mistakes

  • Do not start antibiotics without a proper medical decision.
  • Do not use steroid tablets or injections casually for quick relief.
  • Do not delay emergency care because of home remedies.

Get urgent help if

  • Severe symptoms, confusion, fainting, breathing difficulty, chest pain, severe dehydration, or sudden weakness need urgent medical care.
Medicine names, dose, and timing must be decided by a qualified clinician or pharmacist after checking age, pregnancy, allergy, other diseases, and current medicines.

For rural patients and family caregivers

Patient health record and symptom diary

Write your symptoms, medicines already taken, test results, and questions before visiting a doctor. This note stays on your device unless you print or copy it.

Doctor to discuss: Doctor / qualified healthcare provider
Tests to discuss with doctor
  • Basic vital signs: temperature, pulse, blood pressure, oxygen level if needed
  • Relevant blood, urine, imaging, or specialist tests only after clinical assessment
Questions to ask
  • What is the most likely cause of my symptoms?
  • Which warning signs mean I should go to emergency care?
  • Which tests are really needed now?
  • Which medicines are safe for my age, pregnancy status, allergy, kidney/liver/stomach condition, and current medicines?

Emergency warning signs such as chest pain, severe breathing difficulty, sudden weakness, confusion, severe dehydration, major injury, or loss of bladder/bowel control need urgent medical care. Do not wait for online information.

Safe pathway to proper treatment

Care roadmap for: 42 Extremely Useful Tricks for the WordPress Functions File

Use this simple roadmap to understand the next safe steps. It is educational and does not replace examination by a doctor.

Go to emergency care if you notice:
  • Severe or rapidly worsening symptoms
  • Breathing difficulty, chest pain, fainting, confusion, severe weakness, major injury, or severe dehydration
Doctor / service to discuss: Qualified healthcare provider; specialist depends on symptoms and examination.
  1. Step 1

    Check danger signs first

    If danger signs are present, seek emergency care and do not wait for online information.

  2. Step 2

    Record the symptom story

    Write when symptoms started, severity, medicines already taken, allergies, pregnancy status, and test results.

  3. Step 3

    Visit a qualified clinician

    A doctor, nurse, or qualified healthcare provider can examine you and decide which tests or treatment are needed.

  4. Step 4

    Do only useful tests

    Do tests after clinical assessment. Avoid unnecessary tests, random antibiotics, or repeated medicines without diagnosis.

  5. Step 5

    Follow up and return early if worse

    If symptoms worsen, new warning signs appear, or treatment is not helping, return for review quickly.

Rural patient practical tips
  • Take a written symptom diary and all previous prescriptions/test reports.
  • Do not hide medicines already taken, even herbal or over-the-counter medicines.
  • Ask which warning signs mean urgent referral to hospital.

This roadmap is for education. A real diagnosis and treatment plan requires history, examination, and clinical judgment.

Internal learning pathway

Explore related RX articles

Related guides from RX Harun are grouped to help readers move from overview to symptoms, tests, treatment, and safe next steps.

Rx iT World
  1. Business Internet DefinitionBusiness internet refers to internet services specifically designed for the needs of businesses. These services often…
  2. Buffer Overflow Errors DefinitionBuffer overflow errors are characterized by the overwriting of memory fragments of the process, which should…
  3. How to install ModSecurity DefinitionModSecurity is a toolkit for real-time web application monitoring?, logging, and access control. CustomBuild allows you…
  4. MotionCtrl: A Unified and Flexible Motion Controller for Video Generation DefinitionMotions in a video primarily consist of camera motion, induced by camera movement, and object motion,…
  5. Multi-agent Conversation Framework DefinitionAutoGen offers a unified multi-agent conversation framework as a high-level abstraction of using foundation models. It…
  6. AutoBuild   In this blog, we introduce AutoBuild, a pipeline that can automatically build multi-agent systems for complex…