Home » Web Design » How To Create A Shortcode For A Blank Or Empty Line On WordPress

How To Create A Shortcode For A Blank Or Empty Line On WordPress

[Normal_Box]Creating blank and empty lines on WordPress

Creating Empty Lines On WP

There may be a point in time where someone needs to create an empty space or a blank line somewhere on WordPress, without using CSS markups. For instance, sometimes the visual editor on WordPress can become clustered, and [shortcode] can be used to identify or mark the location of a blank line.

There are plenty of right ways to create blank spaces and empty lines on WordPress including the use of amperstamps (&nbsp;), rule tags (<br>,<hr>), creating tables, columns, and more. What we did in the code snippet below is we used an amperstamp with paragraph tags to be used as a PHP function, so when the shortcode [blank] is inserted onto a page or post on WordPress an individual blank line or empty space is created.[/Normal_Box]

Copy and paste into functions.php file Copy and paste the snippet below into your current theme’s functions.php file.[Normal_Box]

<?php
/* shortcode for blank line */
function blankline() {
 return '<p>&nbsp;</p>';
}
add_shortcode('blank', 'blankline');
?>

[/Normal_Box]To create a blank or empty line on WordPress use the shortcode: [blank]

Sean Moran

Sean Moran is a distinguished tech author and entrepreneur with over 20 years of extensive experience in cybersecurity, privacy, malware, Google Analytics, online marketing, and various other tech domains. His expertise and contributions to the industry have been recognized in numerous esteemed publications. Sean is widely acclaimed for his sharp intellect and innovative insights, solidifying his reputation as a leading figure in the tech community. His work not only advances the field but also helps businesses and individuals navigate the complexities of the digital world.

More Reading

Post navigation

4 Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

How to display Date and Time on WordPress

How To Install WordPress Themes

How to add your Twitter feed to your WordPress website