Plugin / Gnarly Frontend Page Sort

Gnarly Apps

Installation

Installation

This is the code I used to list the child pages on a parent page. I changed the sort_column to menu_order instead of the default post_title, and the sort_order is asc.

<?php

    global $post;

    $args = array(          
        'hierarchical'  => 0,                       
        'child_of'      => 0,
        'parent'        => $post->ID,           
        'number'        => '',
        'sort_order'    =>  'asc',
        'sort_column'   =>  'menu_order'
    );

    $child_pages = get_pages( $args );  
?>

With the Child pages, I then created a custom loop (an example will be included later on in a separate file. I made 2 functions to spit out the pages of the parent page). From there I can add the gnarly tags to the parent container and the child items.

When you install the plugin, just find the template that controls your pages loop and make the following modifications. This example uses Twenty-Fourteen as an example.

<div role="main" class="site-content" id="content" data-gnarly-sort='true'>

    <article data-gnarly-id="58" class="page-58 page" id="page-58">
        <div class="entry-content">
            <h2>Your Page Title</h2>
        </div>
        <!-- .entry-content -->
    </article>
    <!-- #page-## -->    

    <article data-gnarly-id="57" class="page-57 page" id="page-57">
        <div class="entry-content">
            <h2>Your Page Title</h2>
        </div>
        <!-- .entry-content -->
    </article>
    <!-- #page-## -->    

    <article data-gnarly-id="56" class="page-56 page" id="page-56">
        <div class="entry-content">
            <h2>Your Page Title</h2>
        </div>
        <!-- .entry-content -->
    </article>
    <!-- #page-## -->    

    <article data-gnarly-id="55" class="page-55 page" id="page-55">
        <div class="entry-content">
            <h2>Your Page Title</h2>
        </div>
        <!-- .entry-content -->
    </article>
    <!-- #page-## -->    

</div>

Notice the following code

<div role="main" class="site-content" id="content" data-gnarly-sort="true">

The data-gnarly-sort=’true’ attribute tag. This tells the plug-in that it is the parent element of the sorter.

On each of the pages that get spit out, you must include the data-gnarly-id=”58″ in order to tell the sorter that it is a page item that will be drag and drop sorted using the page ID. This attribute is important because it tells wordpress what position it’s in when you drag and drop each element by using the page ID. You can echo out the page ID by using the following PHP pre in the loop.

<article data-gnarly-id="<?php the_ID(); ?>" class="page-58 page" id="page-58"> 

Minimum Requirements

  • WordPress 3.9 or greater
  • PHP version 5.2.4 or greater
  • MySQL version 5.0 or greater

Ratings

0
0 reviews

Rating breakdown

Details Information

Version

1.0

First Released

25 Jun, 2014

Total Downloads

707

Wordpress Version

3.9 or higher

Tested up to:

3.9.29

Require PHP Version:

-

Tags

Contributors

Languages

The plugin hasn't been transalated in any language other than English.

DIRECTORY DISCLAIMER

The information provided in this THEME/PLUGIN DIRECTORY is made available for information purposes only, and intended to serve as a resource to enable visitors to select a relevant theme or plugin. wpSocket gives no warranty of any kind, express or implied with regard to the information, including without limitation any warranty that the particular theme or plugin that you select is qualified on your situation.

The information in the individual theme or plugin displayed in the Directory is provided by the owners and contributors themselves. wpSocket gives no warranty as to the accuracy of the information and will not be liable to you for any loss or damage suffered by you as a consequence of your reliance on the information.

Links to respective sites are offered to assist in accessing additional information. The links may be outdated or broken. Connect to outside sites at your own risk. The Theme/Plugin Directory does not endorse the content or accuracy of any listing or external website.

While information is made available, no guarantee is given that the details provided are correct, complete or up-to-date.

wpSocket is not related to the theme or plugin, and also not responsible and expressly disclaims all liability for, damages of any kind, arising out of the use, reference to, or reliance on, any information or business listed throughout our site.

Keep Leading Your Followers!
Share it for them.