WP Edit Shortcodes

Below, you’ll find a detailed guide on how to add the WP Edit Shortcodes to your WordPress website, including their parameters, examples, and PHP function code. Additionally, we’ll assist you with common issues that might cause the WP Edit Plugin shortcodes not to show or not to work correctly.

Before starting, here is an overview of the WP Edit Plugin and the shortcodes it provides:

Plugin Icon
WP Edit

"WP Edit is a versatile WordPress plugin that enhances the default WordPress editor, allowing users to add custom styling, scripts, and other unique elements to their site content."

★★★★✩ (159) Active Installs: 70000+ Tested with: 4.9.24 PHP Version: false
Included Shortcodes:
  • [break]
  • [one_third]
  • [one_third_last]
  • [two_third]
  • [two_third_last]
  • [one_half]
  • [one_half_last]
  • [one_fourth]
  • [one_fourth_last]
  • [three_fourth]
  • [three_fourth_last]
  • [one_fifth]
  • [one_fifth_last]
  • [two_fifth]
  • [two_fifth_last]
  • [three_fifth]
  • [three_fifth_last]
  • [four_fifth]
  • [four_fifth_last]
  • [one_sixth]
  • [one_sixth_last]
  • [five_sixth]
  • [five_sixth_last]
  • [signoff]

WP Edit [break] Shortcode

The WP-Edit ‘break’ shortcode is a simple yet useful tool. It inserts a line break in your content. The related PHP code creates a function that returns a line break HTML tag, allowing you to control text flow.

Shortcode: [break]

Examples and Usage

Basic example – The shortcode [break] is used to insert a line break in your WordPress content. It’s a simple and straightforward way to create space between different sections of your post or page.

[break]

Advanced examples

In the advanced usage of the shortcode, you can use it within other shortcodes or HTML tags to create more complex layouts. For instance, you can use it within a paragraph tag to create a line break after a specific sentence.

<p>This is the first line. [break] This is the second line.</p>

Another advanced usage is to use it within a list to create a line break between list items. This can be useful when you want to create more space between items for readability.

<ul>
<li>First item</li>
[break]
<li>Second item</li>
[break]
<li>Third item</li>
</ul>

PHP Function Code

In case you have difficulties debugging what causing issues with [break] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode( 'break', 'wp_edit_insert_linebreak' );

Shortcode PHP function:

function wp_edit_insert_linebreak($atts){
 		return '<br clear="none" />';
	}

Code file location:

wp-edit/wp-edit/includes/functions.php

WP Edit [one_third] Shortcode

The WP-Edit ‘one_third’ shortcode creates a responsive column that occupies one-third of the page width. It’s a handy tool for organizing content in a grid layout. This shortcode wraps the content within a div element with a class of ‘jwl_one_third’, which can be styled to create the desired layout.

Shortcode: [one_third]

Examples and Usage

Basic example – A simple usage of the ‘one_third’ shortcode is to divide the content within the shortcode into a third of the page or container. This is particularly useful for creating column-like structures in your content.

[one_third]Your content goes here[/one_third]

Advanced examples

If you want to use the ‘one_third’ shortcode to display different types of content, you can do so by using nested shortcodes. In the following example, we are using a ‘contact-form’ shortcode within our ‘one_third’ shortcode. This will display the contact form in a third of the page or container.

[one_third][contact-form id="1"][/one_third]

Another advanced usage of the ‘one_third’ shortcode is to create a three-column structure. In this example, we use the ‘one_third’ shortcode three times to divide the content into three equal parts. Each ‘one_third’ shortcode will take up a third of the page or container.

[one_third]Column 1 content[/one_third]
[one_third]Column 2 content[/one_third]
[one_third]Column 3 content[/one_third]

PHP Function Code

In case you have difficulties debugging what causing issues with [one_third] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode('one_third', 'wp_edit_one_third');

Shortcode PHP function:

function wp_edit_one_third( $atts, $content = null ) { return '<div class="jwl_one_third">' . do_shortcode($content) . '</div>'; }

Code file location:

wp-edit/wp-edit/includes/functions.php

WP Edit [one_third_last] Shortcode

The WP-Edit ‘one_third_last’ shortcode is a useful tool for content layout. It divides the content into three columns, placing the enclosed content in the last third.

Shortcode: [one_third_last]

Examples and Usage

Basic example – A simple usage of the ‘one_third_last’ shortcode to wrap the content within a div with ‘jwl_one_third last’ classes.

[one_third_last]Your content goes here[/one_third_last]

Advanced examples

Using the ‘one_third_last’ shortcode to wrap multiple paragraphs, each paragraph will be wrapped in the ‘jwl_one_third last’ class div.

[one_third_last]

First paragraph content goes here

Second paragraph content goes here

[/one_third_last]

Embedding another shortcode within the ‘one_third_last’ shortcode. This is an example of using a Contact Form 7 shortcode within the ‘one_third_last’ shortcode.

[one_third_last][contact-form-7 id="123" title="Contact form 1"][/one_third_last]

Please note that the ‘one_third_last’ shortcode does not accept any parameters/attributes. It only wraps the content within a div with ‘jwl_one_third last’ classes and clears both floats after the div.

PHP Function Code

In case you have difficulties debugging what causing issues with [one_third_last] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode('one_third_last', 'wp_edit_one_third_last');

Shortcode PHP function:

function wp_edit_one_third_last( $atts, $content = null ) { return '<div class="jwl_one_third last">' . do_shortcode($content) . '</div><div class="clearboth"></div>'; }

Code file location:

wp-edit/wp-edit/includes/functions.php

WP Edit [two_third] Shortcode

The WP-Edit ‘two_third’ shortcode is designed to format the content within a specific layout. Using this shortcode, you can wrap your content in a two-thirds width block, ideal for column layouts.

Shortcode: [two_third]

Examples and Usage

Basic example – The following shortcode will create a two-thirds width section on your page, within which you can place any content you desire.

[two_third]Your content goes here[/two_third]

Advanced examples

1. Including another shortcode within the ‘two_third’ shortcode. This allows you to display other elements, such as a gallery, within the two-thirds section.

[two_third][/two_third]

2. Nesting ‘two_third’ shortcodes to create complex layouts. In this example, we’re creating a two-thirds section within another two-thirds section, effectively creating a section that takes up approximately 44% of the total width.

[two_third][two_third]Your nested content goes here[/two_third][/two_third]

Remember, the ‘two_third’ shortcode is very versatile and can be used to create a variety of layouts. Experiment with nesting and combining it with other shortcodes to create your ideal page layout.

PHP Function Code

In case you have difficulties debugging what causing issues with [two_third] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode('two_third', 'wp_edit_two_third');

Shortcode PHP function:

function wp_edit_two_third( $atts, $content = null ) { return '<div class="jwl_two_third">' . do_shortcode($content) . '</div>'; }

Code file location:

wp-edit/wp-edit/includes/functions.php

WP Edit [two_third_last] Shortcode

The WP-Edit ‘two_third_last’ shortcode is used to create a two-thirds width section at the end of a content block. It wraps the content within a div of class ‘jwl_two_third last’, and clears both sides to prevent content overlap.

Shortcode: [two_third_last]

Examples and Usage

Basic example – The shortcode ‘two_third_last’ is used to create a two-thirds width section on your page. This section will be the last one on the row, hence the name ‘two_third_last’. The content within this section is defined within the shortcode itself.

[two_third_last]Your content goes here[/two_third_last]

Advanced examples

The ‘two_third_last’ shortcode can also be used with other shortcodes nested inside it. This allows for more complex layouts and content structures. Here are a few examples:

Using the shortcode to display a gallery by referencing its ID within the ‘two_third_last’ section. The gallery will fill two-thirds of the row’s width.

[two_third_last][/two_third_last]

Using the shortcode to display a contact form by referencing both ID and title. The form will first try to load by ID, but if not found, it will try to load by title. The form will be displayed within the ‘two_third_last’ section, taking up two-thirds of the row’s width.

[two_third_last][contact-form id="1" title="Contact form 1"][/two_third_last]

Using the shortcode to display a list of recent posts within the ‘two_third_last’ section. The list will take up two-thirds of the row’s width.

[two_third_last][recent-posts posts_per_page="5"][/two_third_last]

PHP Function Code

In case you have difficulties debugging what causing issues with [two_third_last] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode('two_third_last', 'wp_edit_two_third_last');

Shortcode PHP function:

function wp_edit_two_third_last( $atts, $content = null ) { return '<div class="jwl_two_third last">' . do_shortcode($content) . '</div><div class="clearboth"></div>'; }

Code file location:

wp-edit/wp-edit/includes/functions.php

WP Edit [one_half] Shortcode

The WP-Edit ‘one_half’ shortcode is an efficient tool for content layout. It splits your content into two equal halves, enhancing readability and design. This shortcode wraps the content within a div class ‘jwl_one_half’, allowing it to occupy half the space of its parent container. It’s a handy tool for creating dynamic layouts.

Shortcode: [one_half]

Examples and Usage

Basic example – A simple usage of the ‘one_half’ shortcode can be to divide the content into two equal halves.

[one_half]Your content goes here[/one_half]

Advanced examples

The ‘one_half’ shortcode can also be used in conjunction with other shortcodes. For instance, you can include a gallery or a contact form within the half width section. This example showcases how to include a gallery shortcode within the ‘one_half’ shortcode.

[one_half][/one_half]

Similarly, you can include a contact form by referencing both ID and title within the ‘one_half’ shortcode. The form will first try to load by ID, but if not found, it will try to load by title.

[one_half][contact-form-7 id="123" title="Contact form 1"][/one_half]

PHP Function Code

In case you have difficulties debugging what causing issues with [one_half] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode('one_half', 'wp_edit_one_half');

Shortcode PHP function:

function wp_edit_one_half( $atts, $content = null ) { return '<div class="jwl_one_half">' . do_shortcode($content) . '</div>'; }

Code file location:

wp-edit/wp-edit/includes/functions.php

WP Edit [one_half_last] Shortcode

The WP-Edit plugin’s shortcode ‘one_half_last’ is used for creating a half-width column at the end of a row in your WordPress content. Its PHP function wraps the content within a div class ‘jwl_one_half last’, effectively making it occupy half the width of its container. It also clears any floats, ensuring proper layout.

Shortcode: [one_half_last]

Examples and Usage

Basic example – The shortcode ‘one_half_last’ is used to create a div with the class ‘jwl_one_half last’, which is typically used for styling purposes in a theme. The content wrapped by this shortcode will be placed inside this div. The ‘clearboth’ div after it is used to prevent float issues with other elements on the page.

[one_half_last]Your content goes here...[/one_half_last]

PHP Function Code

In case you have difficulties debugging what causing issues with [one_half_last] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode('one_half_last', 'wp_edit_one_half_last');

Shortcode PHP function:

function wp_edit_one_half_last( $atts, $content = null ) { return '<div class="jwl_one_half last">' . do_shortcode($content) . '</div><div class="clearboth"></div>'; }

Code file location:

wp-edit/wp-edit/includes/functions.php

WP Edit [one_fourth] Shortcode

The WP-Edit ‘one_fourth’ shortcode is a handy tool that divides a page or post into fourths. When used, it wraps the content within a div class named ‘jwl_one_fourth’. It allows for more complex page layouts and aids in organizing your content effectively.

Shortcode: [one_fourth]

Examples and Usage

Basic example – A simple usage of the ‘one_fourth’ shortcode to wrap content within a div with a class of ‘jwl_one_fourth’.

[one_fourth]Your content goes here[/one_fourth]

PHP Function Code

In case you have difficulties debugging what causing issues with [one_fourth] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode('one_fourth', 'wp_edit_one_fourth');

Shortcode PHP function:

function wp_edit_one_fourth( $atts, $content = null ) { return '<div class="jwl_one_fourth">' . do_shortcode($content) . '</div>'; }

Code file location:

wp-edit/wp-edit/includes/functions.php

WP Edit [one_fourth_last] Shortcode

The WP-Edit ‘one_fourth_last’ shortcode is a layout tool. It creates a 1/4 width column, placing it last in a row. The PHP function processes the shortcode, wrapping the content in a div class, enabling styling.

Shortcode: [one_fourth_last]

Examples and Usage

Basic example – The following usage example demonstrates how to utilize the ‘one_fourth_last’ shortcode to create a one-fourth width section at the end of a row in a WordPress post or page.

[one_fourth_last]Your content goes here.[/one_fourth_last]

PHP Function Code

In case you have difficulties debugging what causing issues with [one_fourth_last] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode('one_fourth_last', 'wp_edit_one_fourth_last');

Shortcode PHP function:

function wp_edit_one_fourth_last( $atts, $content = null ) { return '<div class="jwl_one_fourth last">' . do_shortcode($content) . '</div><div class="clearboth"></div>'; }

Code file location:

wp-edit/wp-edit/includes/functions.php

WP Edit [three_fourth] Shortcode

The WP Edit ‘three_fourth’ shortcode is a versatile tool for organizing content. It creates a div element with a class ‘jwl_three_fourth’, allowing you to style a section of your page to take up three-fourths of the available width.

Shortcode: [three_fourth]

Examples and Usage

Basic example – A shortcode that uses the ‘three_fourth’ reference to display content in a div with the class ‘jwl_three_fourth’.

[three_fourth]Your content here[/three_fourth]

PHP Function Code

In case you have difficulties debugging what causing issues with [three_fourth] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode('three_fourth', 'wp_edit_three_fourth');

Shortcode PHP function:

function wp_edit_three_fourth( $atts, $content = null ) { return '<div class="jwl_three_fourth">' . do_shortcode($content) . '</div>'; }

Code file location:

wp-edit/wp-edit/includes/functions.php

WP Edit [three_fourth_last] Shortcode

The WP Edit ‘three_fourth_last’ shortcode is designed to create a responsive layout. It divides content into sections, with the specific section taking up three-fourths of the available width.

Shortcode: [three_fourth_last]

Examples and Usage

Basic Example – The shortcode ‘three_fourth_last’ is used to create a div with a class of ‘jwl_three_fourth last’. It also includes a ‘clearboth’ div after the content.

[three_fourth_last]Your content goes here[/three_fourth_last]

PHP Function Code

In case you have difficulties debugging what causing issues with [three_fourth_last] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode('three_fourth_last', 'wp_edit_three_fourth_last');

Shortcode PHP function:

function wp_edit_three_fourth_last( $atts, $content = null ) { return '<div class="jwl_three_fourth last">' . do_shortcode($content) . '</div><div class="clearboth"></div>'; }

Code file location:

wp-edit/wp-edit/includes/functions.php

WP Edit [one_fifth] Shortcode

The WP-Edit ‘one_fifth’ shortcode is a tool that divides content into five equal parts. It uses the ‘jwl_one_fifth’ class to style the output.

Shortcode: [one_fifth]

Examples and Usage

Basic example – Displaying a section of content that takes up one-fifth of the available width on the page.

[one_fifth]Your content goes here[/one_fifth]

PHP Function Code

In case you have difficulties debugging what causing issues with [one_fifth] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode('one_fifth', 'wp_edit_one_fifth');

Shortcode PHP function:

function wp_edit_one_fifth( $atts, $content = null ) { return '<div class="jwl_one_fifth">' . do_shortcode($content) . '</div>'; }

Code file location:

wp-edit/wp-edit/includes/functions.php

WP Edit [one_fifth_last] Shortcode

The WP-Edit ‘one_fifth_last’ shortcode is a layout tool. It designates a space equal to one-fifth of your page width and aligns it to the right. This shortcode wraps content in a div with class ‘jwl_one_fifth last’, clearing any floats after it. This ensures the content is isolated and doesn’t overlap with other elements.

Shortcode: [one_fifth_last]

Examples and Usage

Basic example – The shortcode ‘one_fifth_last’ is used to create a block of content that occupies one fifth of the available width and is aligned to the right (last) on the page.

[one_fifth_last]Your content goes here.[/one_fifth_last]

PHP Function Code

In case you have difficulties debugging what causing issues with [one_fifth_last] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode('one_fifth_last', 'wp_edit_one_fifth_last');

Shortcode PHP function:

function wp_edit_one_fifth_last( $atts, $content = null ) { return '<div class="jwl_one_fifth last">' . do_shortcode($content) . '</div><div class="clearboth"></div>'; }

Code file location:

wp-edit/wp-edit/includes/functions.php

WP Edit [two_fifth] Shortcode

The WP-Edit ‘two_fifth’ shortcode allows users to divide content into two-fifth sections. It wraps the content within a div class named ‘jwl_two_fifth’. .

Shortcode: [two_fifth]

Examples and Usage

Basic example – A simple usage of the ‘two_fifth’ shortcode to wrap content within a div with the class ‘jwl_two_fifth’.

[two_fifth]Your content here[/two_fifth]

PHP Function Code

In case you have difficulties debugging what causing issues with [two_fifth] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode('two_fifth', 'wp_edit_two_fifth');

Shortcode PHP function:

function wp_edit_two_fifth( $atts, $content = null ) { return '<div class="jwl_two_fifth">' . do_shortcode($content) . '</div>'; }

Code file location:

wp-edit/wp-edit/includes/functions.php

WP Edit [two_fifth_last] Shortcode

The WP-Edit ‘two_fifth_last’ shortcode is designed to structure your content. This shortcode will wrap the content in a div with class ‘jwl_two_fifth last’, creating a column that takes up two-fifths of the available width. It also clears both sides to avoid alignment issues.

Shortcode: [two_fifth_last]

Examples and Usage

Basic Example – A simple usage of the ‘two_fifth_last’ shortcode to wrap content within a two-fifth width div on the page.

[two_fifth_last]Your content here[/two_fifth_last]

PHP Function Code

In case you have difficulties debugging what causing issues with [two_fifth_last] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode('two_fifth_last', 'wp_edit_two_fifth_last');

Shortcode PHP function:

function wp_edit_two_fifth_last( $atts, $content = null ) { return '<div class="jwl_two_fifth last">' . do_shortcode($content) . '</div><div class="clearboth"></div>'; }

Code file location:

wp-edit/wp-edit/includes/functions.php

WP Edit [three_fifth] Shortcode

The ‘wp_edit_three_fifth’ shortcode is a part of the WP-Edit plugin. It returns a div with a class of ‘jwl_three_fifth’, wrapping the content within.

Shortcode: [three_fifth]

Examples and Usage

Basic example – A simple usage of the ‘three_fifth’ shortcode to wrap content within a div with the class ‘jwl_three_fifth’.

[three_fifth]Your content goes here...[/three_fifth]

PHP Function Code

In case you have difficulties debugging what causing issues with [three_fifth] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode('three_fifth', 'wp_edit_three_fifth');

Shortcode PHP function:

function wp_edit_three_fifth( $atts, $content = null ) { return '<div class="jwl_three_fifth">' . do_shortcode($content) . '</div>'; }

Code file location:

wp-edit/wp-edit/includes/functions.php

WP Edit [three_fifth_last] Shortcode

The WP-Edit plugin’s ‘three_fifth_last’ shortcode is used to format content into a responsive layout. It divides the page into five sections, allocating three to the content. This shortcode wraps your content in a div class of ‘jwl_three_fifth last’, providing a clean, organized look. It also includes a ‘clearboth’ div to prevent layout issues.

Shortcode: [three_fifth_last]

Examples and Usage

Basic example – The shortcode ‘three_fifth_last’ can be used to wrap the content within a div class ‘jwl_three_fifth last’ and clear both sides of the div after the content. This is useful for creating a specific layout on your page.

[three_fifth_last]Your content goes here[/three_fifth_last]

PHP Function Code

In case you have difficulties debugging what causing issues with [three_fifth_last] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode('three_fifth_last', 'wp_edit_three_fifth_last');

Shortcode PHP function:

function wp_edit_three_fifth_last( $atts, $content = null ) { return '<div class="jwl_three_fifth last">' . do_shortcode($content) . '</div><div class="clearboth"></div>'; }

Code file location:

wp-edit/wp-edit/includes/functions.php

WP Edit [four_fifth] Shortcode

The WP-Edit ‘four_fifth’ shortcode creates a responsive layout column that occupies 80% of the container width. It’s perfect for designing flexible page structures.

Shortcode: [four_fifth]

Examples and Usage

Basic example – A simple usage of the ‘four_fifth’ shortcode to wrap content within a ‘jwl_four_fifth’ div class.

[four_fifth]Your content here[/four_fifth]

PHP Function Code

In case you have difficulties debugging what causing issues with [four_fifth] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode('four_fifth', 'wp_edit_four_fifth');

Shortcode PHP function:

function wp_edit_four_fifth( $atts, $content = null ) { return '<div class="jwl_four_fifth">' . do_shortcode($content) . '</div>'; }

Code file location:

wp-edit/wp-edit/includes/functions.php

WP Edit [four_fifth_last] Shortcode

The WP-Edit ‘four_fifth_last’ shortcode is used to create a content block that takes up 80% of the available width and is positioned last in its container. This shortcode wraps the content in a div with the class ‘jwl_four_fifth last’, and clears any floats after it. This ensures that the content block appears as the last element, even if other elements are floated alongside it.

Shortcode: [four_fifth_last]

Examples and Usage

Basic example – A simple use of the ‘four_fifth_last’ shortcode to wrap content within a div class.

[four_fifth_last]Your content goes here[/four_fifth_last]

PHP Function Code

In case you have difficulties debugging what causing issues with [four_fifth_last] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode('four_fifth_last', 'wp_edit_four_fifth_last');

Shortcode PHP function:

function wp_edit_four_fifth_last( $atts, $content = null ) { return '<div class="jwl_four_fifth last">' . do_shortcode($content) . '</div><div class="clearboth"></div>'; }

Code file location:

wp-edit/wp-edit/includes/functions.php

WP Edit [one_sixth] Shortcode

The WP-Edit ‘one_sixth’ shortcode is a tool that allows users to divide their webpage content into six equal parts. By using the ‘one_sixth’ shortcode, a sixth of the webpage’s width is allocated to display content enclosed within the shortcode tags. This is especially useful for creating multi-column layouts in WordPress.

Shortcode: [one_sixth]

Examples and Usage

Basic example – The shortcode ‘one_sixth’ is used to divide a section of the content into one-sixth of the available space. It is particularly useful for creating layout structures within your content.

[one_sixth]Your content here[/one_sixth]

PHP Function Code

In case you have difficulties debugging what causing issues with [one_sixth] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode('one_sixth', 'wp_edit_one_sixth');

Shortcode PHP function:

function wp_edit_one_sixth( $atts, $content = null ) { return '<div class="jwl_one_sixth">' . do_shortcode($content) . '</div>'; }

Code file location:

wp-edit/wp-edit/includes/functions.php

WP Edit [one_sixth_last] Shortcode

The WP-Edit ‘one_sixth_last’ shortcode is a layout tool. It creates a div that occupies one-sixth of the available width and is aligned to the right. This shortcode also clears both sides, ensuring no content wraps around it. It’s useful for creating columns or grids.

Shortcode: [one_sixth_last]

Examples and Usage

Basic example – The shortcode ‘one_sixth_last’ is used to encapsulate content within a div with class ‘jwl_one_sixth last’. It allows you to apply specific styling to the enclosed content.

[one_sixth_last]Your content goes here...[/one_sixth_last]

PHP Function Code

In case you have difficulties debugging what causing issues with [one_sixth_last] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode('one_sixth_last', 'wp_edit_one_sixth_last');

Shortcode PHP function:

function wp_edit_one_sixth_last( $atts, $content = null ) { return '<div class="jwl_one_sixth last">' . do_shortcode($content) . '</div><div class="clearboth"></div>'; }

Code file location:

wp-edit/wp-edit/includes/functions.php

WP Edit [five_sixth] Shortcode

The WP-Edit ‘five_sixth’ shortcode is a versatile tool for WordPress developers. It generates a div element with a class of ‘jwl_five_sixth’. This shortcode wraps the content within the div, allowing developers to apply specific styling for this section of the webpage. This is particularly useful for creating responsive designs.

Shortcode: [five_sixth]

Examples and Usage

Basic Example – An example of the shortcode usage for creating a five-sixth column in your content.

[five_sixth]Your content goes here[/five_sixth]

PHP Function Code

In case you have difficulties debugging what causing issues with [five_sixth] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode('five_sixth', 'wp_edit_five_sixth');

Shortcode PHP function:

function wp_edit_five_sixth( $atts, $content = null ) { return '<div class="jwl_five_sixth">' . do_shortcode($content) . '</div>'; }

Code file location:

wp-edit/wp-edit/includes/functions.php

WP Edit [five_sixth_last] Shortcode

The WP-Edit ‘five_sixth_last’ shortcode is a versatile tool for content arrangement. It creates a div element that occupies five-sixths of the available width of its parent container. The ‘last’ class implies that it’s the last column in a row, triggering a new line afterwards. This is ideal for responsive grid layouts, enabling intricate design possibilities.

Shortcode: [five_sixth_last]

Examples and Usage

Basic example – A simple usage of the shortcode to display content within a five-sixth width section of the page.

[five_sixth_last]Your content goes here[/five_sixth_last]

PHP Function Code

In case you have difficulties debugging what causing issues with [five_sixth_last] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode('five_sixth_last', 'wp_edit_five_sixth_last');

Shortcode PHP function:

function wp_edit_five_sixth_last( $atts, $content = null ) { return '<div class="jwl_five_sixth last">' . do_shortcode($content) . '</div><div class="clearboth"></div>'; }

Code file location:

wp-edit/wp-edit/includes/functions.php

WP Edit [signoff] Shortcode

The WP Edit ‘signoff’ shortcode is a customizable feature that allows users to insert a predefined text at the end of posts. This shortcode retrieves the ‘signoff_text’ option from the ‘wp_edit_extras’ setting. If no text is defined, it defaults to ‘Please enter text here…’.

Shortcode: [signoff]

Examples and Usage

Basic example – The ‘signoff’ shortcode is used to display a predefined sign-off text. This text can be customized in the ‘wp_edit_extras’ options.

[signoff /]

PHP Function Code

In case you have difficulties debugging what causing issues with [signoff] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode('signoff', 'wp_edit_sign_off_text');

Shortcode PHP function:

function wp_edit_sign_off_text() {
		
		$options = get_option('wp_edit_extras');
		$jwl_signoff = isset($options['signoff_text']) ? $options['signoff_text'] : 'Please enter text here...';
			
		return $jwl_signoff;  
	}

Code file location:

wp-edit/wp-edit/includes/functions.php

Conclusion

Now that you’ve learned how to embed the WP Edit Plugin shortcodes, understood the parameters, and seen code examples, it’s easy to use and debug any issue that might cause it to ‘not work’. If you still have difficulties with it, don’t hesitate to leave a comment below.

Comments

Leave a Reply

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