Pagebreak Description

Pagebreak Description Install Statistics

11
100%
Today: 11 Yesterday: 0 All-time: 400 downloads
Pagebreak Description Icon

Try plugin: Pagebreak Description

We'll create fresh WordPress site with Pagebreak Description installed. You have 20 minutes to test the plugin after that site we'll be deleted.

Takes ~10 seconds to install.

About Pagebreak Description

Page breaks and before/after descriptions

0


0


0


0


0

updated: 8 months ago
since: 10 months ago

Description

  • Enter page breaks and before/after descriptions. Values are used in pagination.
  • Do not mix this block with the Page Break block, as it may cause the comment to be misaligned.

How it works

Filter hooks

/** ==================================================
 * Filter for CSS URL.
 * Default CSS -> /pagebreak-description/css/custom.css
 */
add_filter(
    'pagebreak_description_css', 
    function() {

        /* If you put mydesign.css in wp-content/uploads */
        $wp_uploads = wp_upload_dir();
        $upload_url = $wp_uploads['baseurl'];
        if ( is_ssl() ) {
            $upload_url = str_replace( 'http:', 'https:', $upload_url );
        }
        $upload_url = untrailingslashit( $upload_url );
        $url = $upload_url . '/mydesign.css';

        return $url;
    },
    10,
    1
);