Link to home
Start Free TrialLog in
Avatar of Jeremy Leys
Jeremy LeysFlag for New Zealand

asked on

How do I sort an associative multidimensional array by first key index in PHP?

Hi,

I am having a problem sorting a multidimensional array by its first key index using PHP:

I have tried using ksort for ascending and krsort for descending but the results are not what I would expect. I only want to sort by the key of the first index of the multidimensional array.

"2015 Term 2 June Issue" should be at the top in a descending order

"2012 Term 1 March Issue" should be at the top for ascending order


Example array:

<?php

$arr_mag = array();
                
$arr_art = $query->get_posts();

foreach( $arr_art as $art ) {
        $arr_mag[get_article_parent_title($art->ID)][] = $art;
}

 if($_POST['order'] == 'ASC'){
         ksort($arr_mag, SORT_STRING);
 }else{
         krsort($arr_mag, SORT_STRING);
 }

 $_POST['mag_array'] = $arr_mag;

echo  $_POST['mag_array'] ;

?>

Open in new window


Incorrectly sorted descending string  with krsort

Array
(
    [2013 Term 1 March Issue] => Array
        (
            [0] => WP_Post Object
                (
                    [ID] => 564
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:33:10
                    [post_date_gmt] => 2015-06-17 22:33:10
                    [post_content] => 
                    [post_title] => Editorial
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => editorial-6
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:33:13
                    [post_modified_gmt] => 2015-06-17 22:33:13
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=564
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [1] => WP_Post Object
                (
                    [ID] => 565
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:34:18
                    [post_date_gmt] => 2015-06-17 22:34:18
                    [post_content] => 
                    [post_title] => President's Pen
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => presidents-pen-9
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:34:20
                    [post_modified_gmt] => 2015-06-17 22:34:20
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=565
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [2] => WP_Post Object
                (
                    [ID] => 566
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:36:06
                    [post_date_gmt] => 2015-06-17 22:36:06
                    [post_content] => 
                    [post_title] => Children Massaging Children: Hauora
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => children-massaging-children-hauora
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:36:10
                    [post_modified_gmt] => 2015-06-17 22:36:10
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=566
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [3] => WP_Post Object
                (
                    [ID] => 567
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:36:58
                    [post_date_gmt] => 2015-06-17 22:36:58
                    [post_content] => 
                    [post_title] => Obituary
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => obituary
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:37:07
                    [post_modified_gmt] => 2015-06-17 22:37:07
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=567
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [4] => WP_Post Object
                (
                    [ID] => 568
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:43:22
                    [post_date_gmt] => 2015-06-17 22:43:22
                    [post_content] => 
                    [post_title] => NZPF Honours Outstanding Contributions
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => nzpf-honours-outstanding-contributions
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 11:14:50
                    [post_modified_gmt] => 2015-06-17 23:14:50
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=568
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [5] => WP_Post Object
                (
                    [ID] => 569
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:45:27
                    [post_date_gmt] => 2015-06-17 22:45:27
                    [post_content] => 
                    [post_title] => The Rich Kids
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => the-rich-kids
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:45:31
                    [post_modified_gmt] => 2015-06-17 22:45:31
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=569
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [6] => WP_Post Object
                (
                    [ID] => 570
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:47:05
                    [post_date_gmt] => 2015-06-17 22:47:05
                    [post_content] => 
                    [post_title] => NZPF Conference - Claudlands Events' Centre, Hamilton, 9-12 July
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => nzpf-conference-claudlands-events-centre-hamilton-9-12-july
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 11:14:32
                    [post_modified_gmt] => 2015-06-17 23:14:32
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=570
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [7] => WP_Post Object
                (
                    [ID] => 571
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:48:17
                    [post_date_gmt] => 2015-06-17 22:48:17
                    [post_content] => 
                    [post_title] => Five Keys to Building and Maintaining Sustainable School Momentum
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => five-keys-to-building-and-maintaining-sustainable-school-momentum
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:48:20
                    [post_modified_gmt] => 2015-06-17 22:48:20
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=571
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [8] => WP_Post Object
                (
                    [ID] => 572
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:49:42
                    [post_date_gmt] => 2015-06-17 22:49:42
                    [post_content] => 
                    [post_title] => Teaching Students Financial Skills for Life
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => teaching-students-financial-skills-for-life
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:49:45
                    [post_modified_gmt] => 2015-06-17 22:49:45
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=572
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [9] => WP_Post Object
                (
                    [ID] => 573
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:50:19
                    [post_date_gmt] => 2015-06-17 22:50:19
                    [post_content] => 
                    [post_title] => School Lines
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => school-lines-6
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:50:22
                    [post_modified_gmt] => 2015-06-17 22:50:22
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=573
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [10] => WP_Post Object
                (
                    [ID] => 574
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:51:47
                    [post_date_gmt] => 2015-06-17 22:51:47
                    [post_content] => 
                    [post_title] => Rural Ramblings
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => rural-ramblings
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:51:50
                    [post_modified_gmt] => 2015-06-17 22:51:50
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=574
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [11] => WP_Post Object
                (
                    [ID] => 580
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:59:40
                    [post_date_gmt] => 2015-06-17 22:59:40
                    [post_content] => 
                    [post_title] => Powerful Reflection Activities that Empower Teachers to Change
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => powerful-reflection-activities-that-empower-teachers-to-change
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:59:43
                    [post_modified_gmt] => 2015-06-17 22:59:43
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=580
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

        )

    [2013 Term 2 June Issue] => Array
        (
            [0] => WP_Post Object
                (
                    [ID] => 575
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:53:13
                    [post_date_gmt] => 2015-06-17 22:53:13
                    [post_content] => 
                    [post_title] => Editorial
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => editorial-7
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:53:16
                    [post_modified_gmt] => 2015-06-17 22:53:16
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=575
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [1] => WP_Post Object
                (
                    [ID] => 576
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:54:23
                    [post_date_gmt] => 2015-06-17 22:54:23
                    [post_content] => 
                    [post_title] => President's Pen
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => presidents-pen-10
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:54:54
                    [post_modified_gmt] => 2015-06-17 22:54:54
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=576
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [2] => WP_Post Object
                (
                    [ID] => 577
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:55:35
                    [post_date_gmt] => 2015-06-17 22:55:35
                    [post_content] => 
                    [post_title] => NZPF Moot 2013
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => nzpf-moot-2013
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 11:14:07
                    [post_modified_gmt] => 2015-06-17 23:14:07
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=577
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [3] => WP_Post Object
                (
                    [ID] => 578
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:56:54
                    [post_date_gmt] => 2015-06-17 22:56:54
                    [post_content] => 
                    [post_title] => NZCER - Explaining Star Assessment Changes
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => nzcer-explaining-star-assessment-changes
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 11:13:23
                    [post_modified_gmt] => 2015-06-17 23:13:23
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=578
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [4] => WP_Post Object
                (
                    [ID] => 579
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:58:00
                    [post_date_gmt] => 2015-06-17 22:58:00
                    [post_content] => 
                    [post_title] => Learning Remarkably
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => learning-remarkably
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:58:00
                    [post_modified_gmt] => 2015-06-17 22:58:00
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=579
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

        )

    [2013 Term 3 September Issue] => Array
        (
            [0] => WP_Post Object
                (
                    [ID] => 517
                    [post_author] => 1
                    [post_date] => 2015-06-16 22:22:15
                    [post_date_gmt] => 2015-06-16 10:22:15
                    [post_content] => 
                    [post_title] => Editorial
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => editoral-3
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 09:17:21
                    [post_modified_gmt] => 2015-06-17 21:17:21
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=517
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [1] => WP_Post Object
                (
                    [ID] => 518
                    [post_author] => 1
                    [post_date] => 2015-06-16 22:23:25
                    [post_date_gmt] => 2015-06-16 10:23:25
                    [post_content] => 
                    [post_title] => President's Pen
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => presidents-pen-6
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-16 22:23:29
                    [post_modified_gmt] => 2015-06-16 10:23:29
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=518
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [2] => WP_Post Object
                (
                    [ID] => 519
                    [post_author] => 1
                    [post_date] => 2015-06-16 22:25:59
                    [post_date_gmt] => 2015-06-16 10:25:59
                    [post_content] => 
                    [post_title] => Matauranga Maori an NZPF initiative
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => matauranga-maori-an-nzpf-initiative
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-16 22:26:21
                    [post_modified_gmt] => 2015-06-16 10:26:21
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=519
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [3] => WP_Post Object
                (
                    [ID] => 531
                    [post_author] => 1
                    [post_date] => 2015-06-17 15:39:17
                    [post_date_gmt] => 2015-06-17 03:39:17
                    [post_content] => 
                    [post_title] => 'Willowbank School' In thirty languages
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => willowbank-school-in-thirty-languages
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-17 15:39:20
                    [post_modified_gmt] => 2015-06-17 03:39:20
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=531
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [4] => WP_Post Object
                (
                    [ID] => 532
                    [post_author] => 1
                    [post_date] => 2015-06-17 15:47:52
                    [post_date_gmt] => 2015-06-17 03:47:52
                    [post_content] => 
                    [post_title] => Principals' Advise - Helping Principals achieve a successful outcome
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => principals-advise-helping-principals-achieve-a-successful-outcome
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-17 15:47:52
                    [post_modified_gmt] => 2015-06-17 03:47:52
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=532
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [5] => WP_Post Object
                (
                    [ID] => 533
                    [post_author] => 1
                    [post_date] => 2015-06-17 15:50:05
                    [post_date_gmt] => 2015-06-17 03:50:05
                    [post_content] => 
                    [post_title] => Cow bells call principals to conference - Power to innovate - NZPF National Conference
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => cow-bells-call-principals-to-conference-power-to-innovate-nzpf-national-conference
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-17 15:50:05
                    [post_modified_gmt] => 2015-06-17 03:50:05
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=533
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [6] => WP_Post Object
                (
                    [ID] => 534
                    [post_author] => 1
                    [post_date] => 2015-06-17 15:50:51
                    [post_date_gmt] => 2015-06-17 03:50:51
                    [post_content] => 
                    [post_title] => Should we use cognitive enhancers?
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => should-we-use-cognitive-enhancers
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-17 15:50:51
                    [post_modified_gmt] => 2015-06-17 03:50:51
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=534
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [7] => WP_Post Object
                (
                    [ID] => 535
                    [post_author] => 1
                    [post_date] => 2015-06-17 15:52:06
                    [post_date_gmt] => 2015-06-17 03:52:06
                    [post_content] => 
                    [post_title] => School lines
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => school-lines-5
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-17 15:52:06
                    [post_modified_gmt] => 2015-06-17 03:52:06
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=535
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [8] => WP_Post Object
                (
                    [ID] => 536
                    [post_author] => 1
                    [post_date] => 2015-06-17 15:52:49
                    [post_date_gmt] => 2015-06-17 03:52:49
                    [post_content] => 
                    [post_title] => What's on top - Then there were none
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => whats-on-top-then-there-were-none
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-17 15:52:51
                    [post_modified_gmt] => 2015-06-17 03:52:51
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=536
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

        )

    [2013 Term 4 November Issue] => Array
        (
            [0] => WP_Post Object
                (
                    [ID] => 551
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:04:16
                    [post_date_gmt] => 2015-06-17 22:04:16
                    [post_content] => 
                    [post_title] => Editorial
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => editorial-5
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:04:20
                    [post_modified_gmt] => 2015-06-17 22:04:20
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=551
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [1] => WP_Post Object
                (
                    [ID] => 554
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:05:38
                    [post_date_gmt] => 2015-06-17 22:05:38
                    [post_content] => 
                    [post_title] => President's Pen
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => presidents-pen-8
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:05:41
                    [post_modified_gmt] => 2015-06-17 22:05:41
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=554
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [2] => WP_Post Object
                (
                    [ID] => 555
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:06:52
                    [post_date_gmt] => 2015-06-17 22:06:52
                    [post_content] => 
                    [post_title] => The National Aspiring Principals' Programme
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => the-national-aspiring-principals-programme
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:06:56
                    [post_modified_gmt] => 2015-06-17 22:06:56
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=555
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [3] => WP_Post Object
                (
                    [ID] => 556
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:08:40
                    [post_date_gmt] => 2015-06-17 22:08:40
                    [post_content] => 
                    [post_title] => Reading Recovery and Beyond
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => reading-recovery-beyond
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:10:11
                    [post_modified_gmt] => 2015-06-17 22:10:11
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=556
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [4] => WP_Post Object
                (
                    [ID] => 557
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:12:08
                    [post_date_gmt] => 2015-06-17 22:12:08
                    [post_content] => 
                    [post_title] => Managing the return to school following 'Stand Down'
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => managing-the-return-to-school-following-stand-down
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:12:11
                    [post_modified_gmt] => 2015-06-17 22:12:11
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=557
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [5] => WP_Post Object
                (
                    [ID] => 558
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:13:15
                    [post_date_gmt] => 2015-06-17 22:13:15
                    [post_content] => 
                    [post_title] => Highlights at Hillsborough
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => highlights-at-hillsborough
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:13:20
                    [post_modified_gmt] => 2015-06-17 22:13:20
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=558
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [6] => WP_Post Object
                (
                    [ID] => 559
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:16:02
                    [post_date_gmt] => 2015-06-17 22:16:02
                    [post_content] => 
                    [post_title] => The Manufacture of Education Myths and Mantras - some reflections on the Christchurch school renewal project
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => the-manufacture-of-education-myths-and-mantras-some-reflections-on-the-christchurch-school-renewal-project
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:17:33
                    [post_modified_gmt] => 2015-06-17 22:17:33
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=559
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [7] => WP_Post Object
                (
                    [ID] => 560
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:18:33
                    [post_date_gmt] => 2015-06-17 22:18:33
                    [post_content] => 
                    [post_title] => Hidden Politics of Tomorrow's Schools
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => hidden-politics-of-tomorrows-schools
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:18:36
                    [post_modified_gmt] => 2015-06-17 22:18:36
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=560
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [8] => WP_Post Object
                (
                    [ID] => 561
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:20:57
                    [post_date_gmt] => 2015-06-17 22:20:57
                    [post_content] => 
                    [post_title] => Revitalising the Role of Public Education - an alternative to the growing privatisation of education
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => revitalising-the-role-of-public-education-an-alternative-to-the-growing-privatisation-of-education
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:21:01
                    [post_modified_gmt] => 2015-06-17 22:21:01
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=561
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [9] => WP_Post Object
                (
                    [ID] => 562
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:23:18
                    [post_date_gmt] => 2015-06-17 22:23:18
                    [post_content] => 
                    [post_title] => School Lines - children are children, and statistics are numbers
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => school-lines-children-are-children-and-statistics-are-numbers
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:23:25
                    [post_modified_gmt] => 2015-06-17 22:23:25
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=562
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [10] => WP_Post Object
                (
                    [ID] => 563
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:24:20
                    [post_date_gmt] => 2015-06-17 22:24:20
                    [post_content] => 
                    [post_title] => What's on Top - Tragedy as a source of strength...
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => whats-on-top-tragedy-as-a-source-of-strength
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:24:22
                    [post_modified_gmt] => 2015-06-17 22:24:22
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=563
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

        )

    [2014 Term 1 March Issue] => Array
        (
            [0] => WP_Post Object
                (
                    [ID] => 537
                    [post_author] => 1
                    [post_date] => 2015-06-17 16:24:31
                    [post_date_gmt] => 2015-06-17 04:24:31
                    [post_content] => 
                    [post_title] => Editorial
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => editorial-4
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-17 16:24:33
                    [post_modified_gmt] => 2015-06-17 04:24:33
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=537
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [1] => WP_Post Object
                (
                    [ID] => 538
                    [post_author] => 1
                    [post_date] => 2015-06-17 16:25:36
                    [post_date_gmt] => 2015-06-17 04:25:36
                    [post_content] => 
                    [post_title] => President's Pen
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => presidents-pen-7
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-17 16:25:40
                    [post_modified_gmt] => 2015-06-17 04:25:40
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=538
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [2] => WP_Post Object
                (
                    [ID] => 539
                    [post_author] => 1
                    [post_date] => 2015-06-17 16:26:31
                    [post_date_gmt] => 2015-06-17 04:26:31
                    [post_content] => 
                    [post_title] => NZPF Executive Members retire
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => nzpf-executive-members-retire
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-17 16:26:33
                    [post_modified_gmt] => 2015-06-17 04:26:33
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=539
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [3] => WP_Post Object
                (
                    [ID] => 540
                    [post_author] => 1
                    [post_date] => 2015-06-17 16:27:41
                    [post_date_gmt] => 2015-06-17 04:27:41
                    [post_content] => 
                    [post_title] => More bad news for national standards
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => more-bad-news-for-national-standards
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-17 16:27:45
                    [post_modified_gmt] => 2015-06-17 04:27:45
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=540
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [4] => WP_Post Object
                (
                    [ID] => 541
                    [post_author] => 1
                    [post_date] => 2015-06-18 09:31:37
                    [post_date_gmt] => 2015-06-17 21:31:37
                    [post_content] => 
                    [post_title] => Educational inequalities will not be reduced using business process models
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => educational-inequalities-will-not-be-reduced-using-business-process-models
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 09:35:43
                    [post_modified_gmt] => 2015-06-17 21:35:43
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=541
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [5] => WP_Post Object
                (
                    [ID] => 542
                    [post_author] => 1
                    [post_date] => 2015-06-18 09:42:11
                    [post_date_gmt] => 2015-06-17 21:42:11
                    [post_content] => 
                    [post_title] => Does NZ have a long tail of underachievement? - Getting to the truth of the matter
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => does-nz-have-a-long-tail-of-underachievement-getting-to-the-truth-of-the-matter
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 09:42:19
                    [post_modified_gmt] => 2015-06-17 21:42:19
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=542
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [6] => WP_Post Object
                (
                    [ID] => 543
                    [post_author] => 1
                    [post_date] => 2015-06-18 09:51:09
                    [post_date_gmt] => 2015-06-17 21:51:09
                    [post_content] => 
                    [post_title] => Moving on up in Manurewa - The story of Manurewa Intermediate School
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => moving-on-up-in-manurewa-the-story-of-manurewa-intermediate-school
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 09:51:17
                    [post_modified_gmt] => 2015-06-17 21:51:17
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=543
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [7] => WP_Post Object
                (
                    [ID] => 544
                    [post_author] => 1
                    [post_date] => 2015-06-18 09:55:35
                    [post_date_gmt] => 2015-06-17 21:55:35
                    [post_content] => 
                    [post_title] => A Principle to Govern Education Policy - Abolishing National Standards
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => a-principle-to-govern-education-policy-abolishing-national-standards
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 09:55:40
                    [post_modified_gmt] => 2015-06-17 21:55:40
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=544
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [8] => WP_Post Object
                (
                    [ID] => 546
                    [post_author] => 1
                    [post_date] => 2015-06-18 09:57:44
                    [post_date_gmt] => 2015-06-17 21:57:44
                    [post_content] => 
                    [post_title] => School Lines - Sceptical, Cynical, Critically Analytical, or Naive?
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => school-lines-sceptical-cynical-critically-analytical-or-naive
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 09:57:48
                    [post_modified_gmt] => 2015-06-17 21:57:48
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=546
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [9] => WP_Post Object
                (
                    [ID] => 548
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:02:09
                    [post_date_gmt] => 2015-06-17 22:02:09
                    [post_content] => 
                    [post_title] => What's on Top? - The wonders of modern technology...
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => whats-on-top-the-wonders-of-modern-technology
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:02:16
                    [post_modified_gmt] => 2015-06-17 22:02:16
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=548
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

        )

    [2014 Term 2 June Issue] => Array
        (
            [0] => WP_Post Object
                (
                    [ID] => 460
                    [post_author] => 1
                    [post_date] => 2015-06-15 13:22:38
                    [post_date_gmt] => 2015-06-15 01:22:38
                    [post_content] => 
                    [post_title] => Editorial
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => editorial-2
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-15 14:48:50
                    [post_modified_gmt] => 2015-06-15 02:48:50
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=460
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [1] => WP_Post Object
                (
                    [ID] => 461
                    [post_author] => 1
                    [post_date] => 2015-06-15 13:24:41
                    [post_date_gmt] => 2015-06-15 01:24:41
                    [post_content] => 
                    [post_title] => President's Pen
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => presidents-pen-4
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-15 14:48:06
                    [post_modified_gmt] => 2015-06-15 02:48:06
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=461
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [2] => WP_Post Object
                (
                    [ID] => 462
                    [post_author] => 1
                    [post_date] => 2015-06-15 13:37:12
                    [post_date_gmt] => 2015-06-15 01:37:12
                    [post_content] => 
                    [post_title] => NZPF Moot
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => nzpf-moot-2
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-15 14:47:45
                    [post_modified_gmt] => 2015-06-15 02:47:45
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=462
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [3] => WP_Post Object
                (
                    [ID] => 463
                    [post_author] => 1
                    [post_date] => 2015-06-15 13:44:11
                    [post_date_gmt] => 2015-06-15 01:44:11
                    [post_content] => 
                    [post_title] => Gifted Curriculum in New Zealand: A road less travelled
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => gifted-curriculum-in-new-zealand-a-road-less-travelled
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-15 14:47:29
                    [post_modified_gmt] => 2015-06-15 02:47:29
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=463
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [4] => WP_Post Object
                (
                    [ID] => 464
                    [post_author] => 1
                    [post_date] => 2015-06-15 14:01:29
                    [post_date_gmt] => 2015-06-15 02:01:29
                    [post_content] => 
                    [post_title] => Geoff Lovegrove Retires
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => geoff-lovegrove-retires
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-15 14:46:34
                    [post_modified_gmt] => 2015-06-15 02:46:34
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=464
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [5] => WP_Post Object
                (
                    [ID] => 467
                    [post_author] => 1
                    [post_date] => 2015-06-15 14:52:00
                    [post_date_gmt] => 2015-06-15 02:52:00
                    [post_content] => 
                    [post_title] => NZPF Conference 2014: A real southern experience
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => nzpf-conference-2014-a-real-southern-experience
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-15 14:52:00
                    [post_modified_gmt] => 2015-06-15 02:52:00
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=467
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [6] => WP_Post Object
                (
                    [ID] => 468
                    [post_author] => 1
                    [post_date] => 2015-06-15 14:53:06
                    [post_date_gmt] => 2015-06-15 02:53:06
                    [post_content] => 
                    [post_title] => Taranaki's Toko School collaborates
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => taranakis-toko-school-collaborates
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-15 14:53:06
                    [post_modified_gmt] => 2015-06-15 02:53:06
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=468
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [7] => WP_Post Object
                (
                    [ID] => 469
                    [post_author] => 1
                    [post_date] => 2015-06-15 15:02:23
                    [post_date_gmt] => 2015-06-15 03:02:23
                    [post_content] => 
                    [post_title] => Challenging a myth: Teachers do not have the greatest within-school impact on student achievement
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => challenging-a-myth-teachers-do-not-have-the-greatest-within-school-impact-on-student-achievement
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-15 15:02:23
                    [post_modified_gmt] => 2015-06-15 03:02:23
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=469
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [8] => WP_Post Object
                (
                    [ID] => 471
                    [post_author] => 1
                    [post_date] => 2015-06-15 15:08:20
                    [post_date_gmt] => 2015-06-15 03:08:20
                    [post_content] => 
                    [post_title] => Seven values of highly effective principals
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => seven-values-of-highly-effective-principals
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-15 15:08:20
                    [post_modified_gmt] => 2015-06-15 03:08:20
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=471
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [9] => WP_Post Object
                (
                    [ID] => 472
                    [post_author] => 1
                    [post_date] => 2015-06-15 15:11:21
                    [post_date_gmt] => 2015-06-15 03:11:21
                    [post_content] => 
                    [post_title] => School lines
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => school-lines-3
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-15 15:11:21
                    [post_modified_gmt] => 2015-06-15 03:11:21
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=472
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [10] => WP_Post Object
                (
                    [ID] => 473
                    [post_author] => 1
                    [post_date] => 2015-06-15 15:14:00
                    [post_date_gmt] => 2015-06-15 03:14:00
                    [post_content] => 
                    [post_title] => ATA WHAKAAROHIA  - A story of mentoring in a special education setting
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => ata-whakaarohia-a-story-of-mentoring-in-a-special-education-setting
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-15 15:20:22
                    [post_modified_gmt] => 2015-06-15 03:20:22
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=473
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [11] => WP_Post Object
                (
                    [ID] => 474
                    [post_author] => 1
                    [post_date] => 2015-06-15 15:32:47
                    [post_date_gmt] => 2015-06-15 03:32:47
                    [post_content] => 
                    [post_title] => Take a deep breath: Integrating into a new school culture
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => take-a-deep-breath-integrating-into-a-new-school-culture
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-15 15:57:24
                    [post_modified_gmt] => 2015-06-15 03:57:24
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=474
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

        )

    [2014 Term 3 September Issue] => Array
        (
            [0] => WP_Post Object
                (
                    [ID] => 481
                    [post_author] => 1
                    [post_date] => 2015-06-16 09:46:45
                    [post_date_gmt] => 2015-06-15 21:46:45
                    [post_content] => 
                    [post_title] => Editorial
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => editorial-3
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-16 09:46:51
                    [post_modified_gmt] => 2015-06-15 21:46:51
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=481
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [1] => WP_Post Object
                (
                    [ID] => 482
                    [post_author] => 1
                    [post_date] => 2015-06-16 09:48:05
                    [post_date_gmt] => 2015-06-15 21:48:05
                    [post_content] => 
                    [post_title] => President's Pen
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => presidents-pen-5
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-16 09:48:05
                    [post_modified_gmt] => 2015-06-15 21:48:05
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=482
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [2] => WP_Post Object
                (
                    [ID] => 483
                    [post_author] => 1
                    [post_date] => 2015-06-16 09:56:33
                    [post_date_gmt] => 2015-06-15 21:56:33
                    [post_content] => 
                    [post_title] => On using cognitive enhancers to raise student achievement: An update
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => on-using-cognitive-enhancers-to-raise-student-achievement-an-update
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-16 09:56:36
                    [post_modified_gmt] => 2015-06-15 21:56:36
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=483
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [3] => WP_Post Object
                (
                    [ID] => 495
                    [post_author] => 1
                    [post_date] => 2015-06-16 12:21:26
                    [post_date_gmt] => 2015-06-16 00:21:26
                    [post_content] => 
                    [post_title] => What matters in the future ?
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => what-matters-in-the-future
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-16 12:21:26
                    [post_modified_gmt] => 2015-06-16 00:21:26
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=495
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [4] => WP_Post Object
                (
                    [ID] => 496
                    [post_author] => 1
                    [post_date] => 2015-06-16 12:23:19
                    [post_date_gmt] => 2015-06-16 00:23:19
                    [post_content] => 
                    [post_title] => NZPF Legal Support Scheme
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => nzpf-legal-support-scheme
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-16 12:23:36
                    [post_modified_gmt] => 2015-06-16 00:23:36
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=496
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [5] => WP_Post Object
                (
                    [ID] => 497
                    [post_author] => 1
                    [post_date] => 2015-06-16 12:26:35
                    [post_date_gmt] => 2015-06-16 00:26:35
                    [post_content] => 
                    [post_title] => Enacting high expectations for all students
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => enacting-high-expectations-for-all-students
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-16 12:26:35
                    [post_modified_gmt] => 2015-06-16 00:26:35
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=497
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [6] => WP_Post Object
                (
                    [ID] => 498
                    [post_author] => 1
                    [post_date] => 2015-06-16 12:27:39
                    [post_date_gmt] => 2015-06-16 00:27:39
                    [post_content] => 
                    [post_title] => Introducing creative commons
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => introducing-creative-commons
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-16 12:27:47
                    [post_modified_gmt] => 2015-06-16 00:27:47
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=498
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [7] => WP_Post Object
                (
                    [ID] => 499
                    [post_author] => 1
                    [post_date] => 2015-06-16 12:28:46
                    [post_date_gmt] => 2015-06-16 00:28:46
                    [post_content] => 
                    [post_title] => High flying at Newton Central
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => high-flying-at-newton-central
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-16 12:28:51
                    [post_modified_gmt] => 2015-06-16 00:28:51
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=499
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [8] => WP_Post Object
                (
                    [ID] => 500
                    [post_author] => 1
                    [post_date] => 2015-06-16 12:30:08
                    [post_date_gmt] => 2015-06-16 00:30:08
                    [post_content] => 
                    [post_title] => The eight continuums of school culture
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => the-eight-continuums-of-school-culture
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-16 12:30:13
                    [post_modified_gmt] => 2015-06-16 00:30:13
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=500
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [9] => WP_Post Object
                (
                    [ID] => 501
                    [post_author] => 1
                    [post_date] => 2015-06-16 12:33:10
                    [post_date_gmt] => 2015-06-16 00:33:10
                    [post_content] => 
                    [post_title] => Outside looking in: IES, A research perspective
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => outside-looking-in-ies-a-research-perspective
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-16 12:33:16
                    [post_modified_gmt] => 2015-06-16 00:33:16
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=501
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [10] => WP_Post Object
                (
                    [ID] => 502
                    [post_author] => 1
                    [post_date] => 2015-06-16 12:33:45
                    [post_date_gmt] => 2015-06-16 00:33:45
                    [post_content] => 
                    [post_title] => School lines
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => school-lines-4
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-16 12:33:51
                    [post_modified_gmt] => 2015-06-16 00:33:51
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=502
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [11] => WP_Post Object
                (
                    [ID] => 503
                    [post_author] => 1
                    [post_date] => 2015-06-16 12:34:22
                    [post_date_gmt] => 2015-06-16 00:34:22
                    [post_content] => 
                    [post_title] => A better start in life
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => a-better-start-in-life
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-16 12:34:26
                    [post_modified_gmt] => 2015-06-16 00:34:26
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=503
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

        )

    [2014 Term 4 November Issue] => Array
        (
            [0] => WP_Post Object
                (
                    [ID] => 387
                    [post_author] => 1
                    [post_date] => 2015-04-22 16:26:15
                    [post_date_gmt] => 2015-04-22 04:26:15
                    [post_content] => 
                    [post_title] => Editorial
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => editorial
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-04-22 16:26:15
                    [post_modified_gmt] => 2015-04-22 04:26:15
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=387
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [1] => WP_Post Object
                (
                    [ID] => 388
                    [post_author] => 1
                    [post_date] => 2015-04-22 16:27:45
                    [post_date_gmt] => 2015-04-22 04:27:45
                    [post_content] => 
                    [post_title] => President's Pen
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => presidents-pen-2
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-04-22 16:27:45
                    [post_modified_gmt] => 2015-04-22 04:27:45
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=388
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [2] => WP_Post Object
                (
                    [ID] => 389
                    [post_author] => 1
                    [post_date] => 2015-04-22 16:28:38
                    [post_date_gmt] => 2015-04-22 04:28:38
                    [post_content] => 
                    [post_title] => Six keys for Digital Leadership
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => six-keys-for-digital-leadership
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-04-22 16:28:38
                    [post_modified_gmt] => 2015-04-22 04:28:38
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=389
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [3] => WP_Post Object
                (
                    [ID] => 390
                    [post_author] => 1
                    [post_date] => 2015-04-22 16:29:48
                    [post_date_gmt] => 2015-04-22 04:29:48
                    [post_content] => 
                    [post_title] => NZPF Conference 2014 - A Southland Extravaganza
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => nzpf-conference-2014-a-southland-extravaganza
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-04-22 16:29:48
                    [post_modified_gmt] => 2015-04-22 04:29:48
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=390
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [4] => WP_Post Object
                (
                    [ID] => 391
                    [post_author] => 1
                    [post_date] => 2015-04-22 16:40:53
                    [post_date_gmt] => 2015-04-22 04:40:53
                    [post_content] => 
                    [post_title] => Awatapu College - Preparing Students for the Future
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => awatapu-college-preparing-students-for-the-future
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-04-22 16:40:53
                    [post_modified_gmt] => 2015-04-22 04:40:53
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=391
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [5] => WP_Post Object
                (
                    [ID] => 392
                    [post_author] => 1
                    [post_date] => 2015-04-22 16:44:35
                    [post_date_gmt] => 2015-04-22 04:44:35
                    [post_content] => 
                    [post_title] => Religious Instruction in NZ State Primary Schools
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => religious-instruction-in-nz-state-primary-schools
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-04-22 16:44:35
                    [post_modified_gmt] => 2015-04-22 04:44:35
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=392
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [6] => WP_Post Object
                (
                    [ID] => 393
                    [post_author] => 1
                    [post_date] => 2015-04-22 16:49:00
                    [post_date_gmt] => 2015-04-22 04:49:00
                    [post_content] => 
                    [post_title] => Neuroscience and Education - The importance of social class and family background
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => neuroscience-and-education-the-importance-of-social-class-and-family-background
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-04-22 16:49:00
                    [post_modified_gmt] => 2015-04-22 04:49:00
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=393
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [7] => WP_Post Object
                (
                    [ID] => 394
                    [post_author] => 1
                    [post_date] => 2015-04-22 16:49:31
                    [post_date_gmt] => 2015-04-22 04:49:31
                    [post_content] => 
                    [post_title] => School Lines
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => school-lines
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-04-22 16:49:31
                    [post_modified_gmt] => 2015-04-22 04:49:31
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=394
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [8] => WP_Post Object
                (
                    [ID] => 395
                    [post_author] => 1
                    [post_date] => 2015-04-22 16:49:58
                    [post_date_gmt] => 2015-04-22 04:49:58
                    [post_content] => 
                    [post_title] => Positive ID
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => positive-id
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-04-22 16:49:58
                    [post_modified_gmt] => 2015-04-22 04:49:58
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=395
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

        )

    [2015 Term 1 March Issue] => Array
        (
            [0] => WP_Post Object
                (
                    [ID] => 372
                    [post_author] => 1
                    [post_date] => 2015-04-22 14:46:55
                    [post_date_gmt] => 2015-04-22 02:46:55
                    [post_content] => 
                    [post_title] => Editorial
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => editoral
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 09:18:39
                    [post_modified_gmt] => 2015-06-17 21:18:39
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=372
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [1] => WP_Post Object
                (
                    [ID] => 374
                    [post_author] => 1
                    [post_date] => 2015-04-22 15:35:04
                    [post_date_gmt] => 2015-04-22 03:35:04
                    [post_content] => 
                    [post_title] => President's Pen
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => presidents-pen
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-04-22 15:35:04
                    [post_modified_gmt] => 2015-04-22 03:35:04
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=374
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [2] => WP_Post Object
                (
                    [ID] => 375
                    [post_author] => 1
                    [post_date] => 2015-04-22 15:43:49
                    [post_date_gmt] => 2015-04-22 03:43:49
                    [post_content] => 
                    [post_title] => Middle Leaders Development in Christchurch
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => middle-leaders-development-in-christchurch
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-04-22 15:43:49
                    [post_modified_gmt] => 2015-04-22 03:43:49
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=375
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [3] => WP_Post Object
                (
                    [ID] => 376
                    [post_author] => 1
                    [post_date] => 2015-04-22 15:44:32
                    [post_date_gmt] => 2015-04-22 03:44:32
                    [post_content] => 
                    [post_title] => Digital Learning
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => digital-learning
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-04-22 15:44:32
                    [post_modified_gmt] => 2015-04-22 03:44:32
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=376
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [4] => WP_Post Object
                (
                    [ID] => 377
                    [post_author] => 1
                    [post_date] => 2015-04-22 15:48:03
                    [post_date_gmt] => 2015-04-22 03:48:03
                    [post_content] => 
                    [post_title] => The Leadership Sweet Spot
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => the-leadership-sweet-spot
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-04-22 15:48:03
                    [post_modified_gmt] => 2015-04-22 03:48:03
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=377
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [5] => WP_Post Object
                (
                    [ID] => 378
                    [post_author] => 1
                    [post_date] => 2015-04-22 15:48:49
                    [post_date_gmt] => 2015-04-22 03:48:49
                    [post_content] => 
                    [post_title] => Farewells to NZPF Executive Members
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => farewells-to-nzpf-executive-members
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-04-22 15:48:49
                    [post_modified_gmt] => 2015-04-22 03:48:49
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=378
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [6] => WP_Post Object
                (
                    [ID] => 379
                    [post_author] => 1
                    [post_date] => 2015-04-22 15:50:05
                    [post_date_gmt] => 2015-04-22 03:50:05
                    [post_content] => 
                    [post_title] => Wakefield School Nelson
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => wakefield-school-nelson
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-04-22 15:50:05
                    [post_modified_gmt] => 2015-04-22 03:50:05
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=379
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [7] => WP_Post Object
                (
                    [ID] => 380
                    [post_author] => 1
                    [post_date] => 2015-04-22 15:51:02
                    [post_date_gmt] => 2015-04-22 03:51:02
                    [post_content] => 
                    [post_title] => Phonics Programmes: What they can and cannot do
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => phonics-programmes-what-they-can-and-cannot-do
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-04-22 15:51:02
                    [post_modified_gmt] => 2015-04-22 03:51:02
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=380
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [8] => WP_Post Object
                (
                    [ID] => 381
                    [post_author] => 1
                    [post_date] => 2015-04-22 15:53:38
                    [post_date_gmt] => 2015-04-22 03:53:38
                    [post_content] => 
                    [post_title] => Can Neuroscience and Education bridge the is-ought gap of theory and practice
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => can-neuroscience-and-education-bridge-the-is-ought-gap-of-theory-and-practice
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-04-22 16:42:44
                    [post_modified_gmt] => 2015-04-22 04:42:44
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=381
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [9] => WP_Post Object
                (
                    [ID] => 382
                    [post_author] => 1
                    [post_date] => 2015-04-22 15:57:43
                    [post_date_gmt] => 2015-04-22 03:57:43
                    [post_content] => 
                    [post_title] => Positivism and Negativism - Tools of mind for leading educators
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => positivism-and-negativism-tools-of-mind-for-leading-educators
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-04-22 15:57:43
                    [post_modified_gmt] => 2015-04-22 03:57:43
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=382
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [10] => WP_Post Object
                (
                    [ID] => 383
                    [post_author] => 1
                    [post_date] => 2015-04-22 15:58:35
                    [post_date_gmt] => 2015-04-22 03:58:35
                    [post_content] => 
                    [post_title] => Education for all
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => education-for-all
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-04-22 15:58:35
                    [post_modified_gmt] => 2015-04-22 03:58:35
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=383
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

        )

    [2015 Term 2 June Issue] => Array
        (
            [0] => WP_Post Object
                (
                    [ID] => 441
                    [post_author] => 1
                    [post_date] => 2015-06-12 09:46:21
                    [post_date_gmt] => 2015-06-11 21:46:21
                    [post_content] => 
                    [post_title] => Editorial
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => editoral-2
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 09:18:14
                    [post_modified_gmt] => 2015-06-17 21:18:14
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=441
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [1] => WP_Post Object
                (
                    [ID] => 444
                    [post_author] => 1
                    [post_date] => 2015-06-12 11:53:27
                    [post_date_gmt] => 2015-06-11 23:53:27
                    [post_content] => 
                    [post_title] => President's Pen
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => presidents-pen-3
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-12 11:53:31
                    [post_modified_gmt] => 2015-06-11 23:53:31
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=444
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [2] => WP_Post Object
                (
                    [ID] => 445
                    [post_author] => 1
                    [post_date] => 2015-06-12 11:54:25
                    [post_date_gmt] => 2015-06-11 23:54:25
                    [post_content] => 
                    [post_title] => 6 Drivers of Stression
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => 6-drivers-of-stression
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-12 11:54:28
                    [post_modified_gmt] => 2015-06-11 23:54:28
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=445
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [3] => WP_Post Object
                (
                    [ID] => 446
                    [post_author] => 1
                    [post_date] => 2015-06-12 11:56:23
                    [post_date_gmt] => 2015-06-11 23:56:23
                    [post_content] => 
                    [post_title] => NZPF Moot
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => nzpf-moot
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-12 11:58:49
                    [post_modified_gmt] => 2015-06-11 23:58:49
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=446
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [4] => WP_Post Object
                (
                    [ID] => 447
                    [post_author] => 1
                    [post_date] => 2015-06-12 12:02:22
                    [post_date_gmt] => 2015-06-12 00:02:22
                    [post_content] => 
                    [post_title] => How to write grant applications
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => how-to-write-grant-applications
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-12 12:02:27
                    [post_modified_gmt] => 2015-06-12 00:02:27
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=447
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [5] => WP_Post Object
                (
                    [ID] => 448
                    [post_author] => 1
                    [post_date] => 2015-06-12 12:04:08
                    [post_date_gmt] => 2015-06-12 00:04:08
                    [post_content] => 
                    [post_title] => Goal Pursuit in education using focused action research
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => goal-pursuit-in-education-using-focused-action-research
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-12 12:04:16
                    [post_modified_gmt] => 2015-06-12 00:04:16
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=448
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [6] => WP_Post Object
                (
                    [ID] => 449
                    [post_author] => 1
                    [post_date] => 2015-06-12 12:05:55
                    [post_date_gmt] => 2015-06-12 00:05:55
                    [post_content] => 
                    [post_title] => Schooled for success - Halfmoon Bay School, Stewart Island
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => schooled-for-success-halfmoon-bay-school-stewart-island
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-12 12:05:58
                    [post_modified_gmt] => 2015-06-12 00:05:58
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=449
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [7] => WP_Post Object
                (
                    [ID] => 450
                    [post_author] => 1
                    [post_date] => 2015-06-12 12:06:57
                    [post_date_gmt] => 2015-06-12 00:06:57
                    [post_content] => 
                    [post_title] => School Lines
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => school-lines-2
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-12 12:06:59
                    [post_modified_gmt] => 2015-06-12 00:06:59
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=450
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [8] => WP_Post Object
                (
                    [ID] => 451
                    [post_author] => 1
                    [post_date] => 2015-06-12 12:08:58
                    [post_date_gmt] => 2015-06-12 00:08:58
                    [post_content] => 
                    [post_title] => Growing Others
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => growing-others
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-12 12:09:47
                    [post_modified_gmt] => 2015-06-12 00:09:47
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=451
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

        )

)

Open in new window


Incorrectly sorted ascending order with ksort

Array
(
    [2014 Term 3 September Issue] => Array
        (
            [0] => WP_Post Object
                (
                    [ID] => 503
                    [post_author] => 1
                    [post_date] => 2015-06-16 12:34:22
                    [post_date_gmt] => 2015-06-16 00:34:22
                    [post_content] => 
                    [post_title] => A better start in life
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => a-better-start-in-life
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-16 12:34:26
                    [post_modified_gmt] => 2015-06-16 00:34:26
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=503
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [1] => WP_Post Object
                (
                    [ID] => 502
                    [post_author] => 1
                    [post_date] => 2015-06-16 12:33:45
                    [post_date_gmt] => 2015-06-16 00:33:45
                    [post_content] => 
                    [post_title] => School lines
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => school-lines-4
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-16 12:33:51
                    [post_modified_gmt] => 2015-06-16 00:33:51
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=502
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [2] => WP_Post Object
                (
                    [ID] => 501
                    [post_author] => 1
                    [post_date] => 2015-06-16 12:33:10
                    [post_date_gmt] => 2015-06-16 00:33:10
                    [post_content] => 
                    [post_title] => Outside looking in: IES, A research perspective
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => outside-looking-in-ies-a-research-perspective
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-16 12:33:16
                    [post_modified_gmt] => 2015-06-16 00:33:16
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=501
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

        )

    [2014 Term 1 March Issue] => Array
        (
            [0] => WP_Post Object
                (
                    [ID] => 548
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:02:09
                    [post_date_gmt] => 2015-06-17 22:02:09
                    [post_content] => 
                    [post_title] => What's on Top? - The wonders of modern technology...
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => whats-on-top-the-wonders-of-modern-technology
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:02:16
                    [post_modified_gmt] => 2015-06-17 22:02:16
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=548
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [1] => WP_Post Object
                (
                    [ID] => 546
                    [post_author] => 1
                    [post_date] => 2015-06-18 09:57:44
                    [post_date_gmt] => 2015-06-17 21:57:44
                    [post_content] => 
                    [post_title] => School Lines - Sceptical, Cynical, Critically Analytical, or Naive?
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => school-lines-sceptical-cynical-critically-analytical-or-naive
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 09:57:48
                    [post_modified_gmt] => 2015-06-17 21:57:48
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=546
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [2] => WP_Post Object
                (
                    [ID] => 544
                    [post_author] => 1
                    [post_date] => 2015-06-18 09:55:35
                    [post_date_gmt] => 2015-06-17 21:55:35
                    [post_content] => 
                    [post_title] => A Principle to Govern Education Policy - Abolishing National Standards
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => a-principle-to-govern-education-policy-abolishing-national-standards
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 09:55:40
                    [post_modified_gmt] => 2015-06-17 21:55:40
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=544
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [3] => WP_Post Object
                (
                    [ID] => 543
                    [post_author] => 1
                    [post_date] => 2015-06-18 09:51:09
                    [post_date_gmt] => 2015-06-17 21:51:09
                    [post_content] => 
                    [post_title] => Moving on up in Manurewa - The story of Manurewa Intermediate School
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => moving-on-up-in-manurewa-the-story-of-manurewa-intermediate-school
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 09:51:17
                    [post_modified_gmt] => 2015-06-17 21:51:17
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=543
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [4] => WP_Post Object
                (
                    [ID] => 542
                    [post_author] => 1
                    [post_date] => 2015-06-18 09:42:11
                    [post_date_gmt] => 2015-06-17 21:42:11
                    [post_content] => 
                    [post_title] => Does NZ have a long tail of underachievement? - Getting to the truth of the matter
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => does-nz-have-a-long-tail-of-underachievement-getting-to-the-truth-of-the-matter
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 09:42:19
                    [post_modified_gmt] => 2015-06-17 21:42:19
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=542
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [5] => WP_Post Object
                (
                    [ID] => 541
                    [post_author] => 1
                    [post_date] => 2015-06-18 09:31:37
                    [post_date_gmt] => 2015-06-17 21:31:37
                    [post_content] => 
                    [post_title] => Educational inequalities will not be reduced using business process models
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => educational-inequalities-will-not-be-reduced-using-business-process-models
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 09:35:43
                    [post_modified_gmt] => 2015-06-17 21:35:43
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=541
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [6] => WP_Post Object
                (
                    [ID] => 540
                    [post_author] => 1
                    [post_date] => 2015-06-17 16:27:41
                    [post_date_gmt] => 2015-06-17 04:27:41
                    [post_content] => 
                    [post_title] => More bad news for national standards
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => more-bad-news-for-national-standards
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-17 16:27:45
                    [post_modified_gmt] => 2015-06-17 04:27:45
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=540
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [7] => WP_Post Object
                (
                    [ID] => 539
                    [post_author] => 1
                    [post_date] => 2015-06-17 16:26:31
                    [post_date_gmt] => 2015-06-17 04:26:31
                    [post_content] => 
                    [post_title] => NZPF Executive Members retire
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => nzpf-executive-members-retire
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-17 16:26:33
                    [post_modified_gmt] => 2015-06-17 04:26:33
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=539
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [8] => WP_Post Object
                (
                    [ID] => 538
                    [post_author] => 1
                    [post_date] => 2015-06-17 16:25:36
                    [post_date_gmt] => 2015-06-17 04:25:36
                    [post_content] => 
                    [post_title] => President's Pen
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => presidents-pen-7
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-17 16:25:40
                    [post_modified_gmt] => 2015-06-17 04:25:40
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=538
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [9] => WP_Post Object
                (
                    [ID] => 537
                    [post_author] => 1
                    [post_date] => 2015-06-17 16:24:31
                    [post_date_gmt] => 2015-06-17 04:24:31
                    [post_content] => 
                    [post_title] => Editorial
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => editorial-4
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-17 16:24:33
                    [post_modified_gmt] => 2015-06-17 04:24:33
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=537
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

        )

    [2013 Term 4 November Issue] => Array
        (
            [0] => WP_Post Object
                (
                    [ID] => 563
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:24:20
                    [post_date_gmt] => 2015-06-17 22:24:20
                    [post_content] => 
                    [post_title] => What's on Top - Tragedy as a source of strength...
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => whats-on-top-tragedy-as-a-source-of-strength
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:24:22
                    [post_modified_gmt] => 2015-06-17 22:24:22
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=563
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [1] => WP_Post Object
                (
                    [ID] => 562
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:23:18
                    [post_date_gmt] => 2015-06-17 22:23:18
                    [post_content] => 
                    [post_title] => School Lines - children are children, and statistics are numbers
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => school-lines-children-are-children-and-statistics-are-numbers
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:23:25
                    [post_modified_gmt] => 2015-06-17 22:23:25
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=562
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [2] => WP_Post Object
                (
                    [ID] => 561
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:20:57
                    [post_date_gmt] => 2015-06-17 22:20:57
                    [post_content] => 
                    [post_title] => Revitalising the Role of Public Education - an alternative to the growing privatisation of education
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => revitalising-the-role-of-public-education-an-alternative-to-the-growing-privatisation-of-education
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:21:01
                    [post_modified_gmt] => 2015-06-17 22:21:01
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=561
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [3] => WP_Post Object
                (
                    [ID] => 560
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:18:33
                    [post_date_gmt] => 2015-06-17 22:18:33
                    [post_content] => 
                    [post_title] => Hidden Politics of Tomorrow's Schools
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => hidden-politics-of-tomorrows-schools
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:18:36
                    [post_modified_gmt] => 2015-06-17 22:18:36
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=560
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [4] => WP_Post Object
                (
                    [ID] => 559
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:16:02
                    [post_date_gmt] => 2015-06-17 22:16:02
                    [post_content] => 
                    [post_title] => The Manufacture of Education Myths and Mantras - some reflections on the Christchurch school renewal project
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => the-manufacture-of-education-myths-and-mantras-some-reflections-on-the-christchurch-school-renewal-project
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:17:33
                    [post_modified_gmt] => 2015-06-17 22:17:33
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=559
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [5] => WP_Post Object
                (
                    [ID] => 558
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:13:15
                    [post_date_gmt] => 2015-06-17 22:13:15
                    [post_content] => 
                    [post_title] => Highlights at Hillsborough
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => highlights-at-hillsborough
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:13:20
                    [post_modified_gmt] => 2015-06-17 22:13:20
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=558
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [6] => WP_Post Object
                (
                    [ID] => 557
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:12:08
                    [post_date_gmt] => 2015-06-17 22:12:08
                    [post_content] => 
                    [post_title] => Managing the return to school following 'Stand Down'
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => managing-the-return-to-school-following-stand-down
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:12:11
                    [post_modified_gmt] => 2015-06-17 22:12:11
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=557
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [7] => WP_Post Object
                (
                    [ID] => 556
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:08:40
                    [post_date_gmt] => 2015-06-17 22:08:40
                    [post_content] => 
                    [post_title] => Reading Recovery and Beyond
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => reading-recovery-beyond
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:10:11
                    [post_modified_gmt] => 2015-06-17 22:10:11
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=556
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [8] => WP_Post Object
                (
                    [ID] => 555
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:06:52
                    [post_date_gmt] => 2015-06-17 22:06:52
                    [post_content] => 
                    [post_title] => The National Aspiring Principals' Programme
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => the-national-aspiring-principals-programme
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:06:56
                    [post_modified_gmt] => 2015-06-17 22:06:56
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=555
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [9] => WP_Post Object
                (
                    [ID] => 554
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:05:38
                    [post_date_gmt] => 2015-06-17 22:05:38
                    [post_content] => 
                    [post_title] => President's Pen
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => presidents-pen-8
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:05:41
                    [post_modified_gmt] => 2015-06-17 22:05:41
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=554
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [10] => WP_Post Object
                (
                    [ID] => 551
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:04:16
                    [post_date_gmt] => 2015-06-17 22:04:16
                    [post_content] => 
                    [post_title] => Editorial
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => editorial-5
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:04:20
                    [post_modified_gmt] => 2015-06-17 22:04:20
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=551
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

        )

    [2013 Term 3 September Issue] => Array
        (
            [0] => WP_Post Object
                (
                    [ID] => 536
                    [post_author] => 1
                    [post_date] => 2015-06-17 15:52:49
                    [post_date_gmt] => 2015-06-17 03:52:49
                    [post_content] => 
                    [post_title] => What's on top - Then there were none
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => whats-on-top-then-there-were-none
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-17 15:52:51
                    [post_modified_gmt] => 2015-06-17 03:52:51
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=536
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [1] => WP_Post Object
                (
                    [ID] => 535
                    [post_author] => 1
                    [post_date] => 2015-06-17 15:52:06
                    [post_date_gmt] => 2015-06-17 03:52:06
                    [post_content] => 
                    [post_title] => School lines
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => school-lines-5
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-17 15:52:06
                    [post_modified_gmt] => 2015-06-17 03:52:06
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=535
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [2] => WP_Post Object
                (
                    [ID] => 534
                    [post_author] => 1
                    [post_date] => 2015-06-17 15:50:51
                    [post_date_gmt] => 2015-06-17 03:50:51
                    [post_content] => 
                    [post_title] => Should we use cognitive enhancers?
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => should-we-use-cognitive-enhancers
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-17 15:50:51
                    [post_modified_gmt] => 2015-06-17 03:50:51
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=534
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [3] => WP_Post Object
                (
                    [ID] => 533
                    [post_author] => 1
                    [post_date] => 2015-06-17 15:50:05
                    [post_date_gmt] => 2015-06-17 03:50:05
                    [post_content] => 
                    [post_title] => Cow bells call principals to conference - Power to innovate - NZPF National Conference
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => cow-bells-call-principals-to-conference-power-to-innovate-nzpf-national-conference
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-17 15:50:05
                    [post_modified_gmt] => 2015-06-17 03:50:05
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=533
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [4] => WP_Post Object
                (
                    [ID] => 532
                    [post_author] => 1
                    [post_date] => 2015-06-17 15:47:52
                    [post_date_gmt] => 2015-06-17 03:47:52
                    [post_content] => 
                    [post_title] => Principals' Advise - Helping Principals achieve a successful outcome
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => principals-advise-helping-principals-achieve-a-successful-outcome
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-17 15:47:52
                    [post_modified_gmt] => 2015-06-17 03:47:52
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=532
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [5] => WP_Post Object
                (
                    [ID] => 531
                    [post_author] => 1
                    [post_date] => 2015-06-17 15:39:17
                    [post_date_gmt] => 2015-06-17 03:39:17
                    [post_content] => 
                    [post_title] => 'Willowbank School' In thirty languages
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => willowbank-school-in-thirty-languages
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-17 15:39:20
                    [post_modified_gmt] => 2015-06-17 03:39:20
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=531
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [6] => WP_Post Object
                (
                    [ID] => 519
                    [post_author] => 1
                    [post_date] => 2015-06-16 22:25:59
                    [post_date_gmt] => 2015-06-16 10:25:59
                    [post_content] => 
                    [post_title] => Matauranga Maori an NZPF initiative
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => matauranga-maori-an-nzpf-initiative
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-16 22:26:21
                    [post_modified_gmt] => 2015-06-16 10:26:21
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=519
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [7] => WP_Post Object
                (
                    [ID] => 518
                    [post_author] => 1
                    [post_date] => 2015-06-16 22:23:25
                    [post_date_gmt] => 2015-06-16 10:23:25
                    [post_content] => 
                    [post_title] => President's Pen
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => presidents-pen-6
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-16 22:23:29
                    [post_modified_gmt] => 2015-06-16 10:23:29
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=518
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [8] => WP_Post Object
                (
                    [ID] => 517
                    [post_author] => 1
                    [post_date] => 2015-06-16 22:22:15
                    [post_date_gmt] => 2015-06-16 10:22:15
                    [post_content] => 
                    [post_title] => Editorial
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => editoral-3
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 09:17:21
                    [post_modified_gmt] => 2015-06-17 21:17:21
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=517
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

        )

    [2013 Term 2 June Issue] => Array
        (
            [0] => WP_Post Object
                (
                    [ID] => 584
                    [post_author] => 1
                    [post_date] => 2015-06-18 11:05:14
                    [post_date_gmt] => 2015-06-17 23:05:14
                    [post_content] => 
                    [post_title] => What's on Top - Choices...
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => whats-on-top-choices
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 11:05:19
                    [post_modified_gmt] => 2015-06-17 23:05:19
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=584
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [1] => WP_Post Object
                (
                    [ID] => 583
                    [post_author] => 1
                    [post_date] => 2015-06-18 11:04:21
                    [post_date_gmt] => 2015-06-17 23:04:21
                    [post_content] => 
                    [post_title] => School Lines
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => school-lines-7
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 11:04:25
                    [post_modified_gmt] => 2015-06-17 23:04:25
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=583
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [2] => WP_Post Object
                (
                    [ID] => 582
                    [post_author] => 1
                    [post_date] => 2015-06-18 11:03:47
                    [post_date_gmt] => 2015-06-17 23:03:47
                    [post_content] => 
                    [post_title] => Stand Children's Services Tu Maia Whanau
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => stand-childrens-services-tu-maia-whanau
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 11:15:57
                    [post_modified_gmt] => 2015-06-17 23:15:57
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=582
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [3] => WP_Post Object
                (
                    [ID] => 581
                    [post_author] => 1
                    [post_date] => 2015-06-18 11:01:32
                    [post_date_gmt] => 2015-06-17 23:01:32
                    [post_content] => 
                    [post_title] => Vital Connection: Why we need more than Self-Managing Schools
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => vital-connection-why-we-need-more-than-self-managing-schools
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 11:02:23
                    [post_modified_gmt] => 2015-06-17 23:02:23
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=581
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [4] => WP_Post Object
                (
                    [ID] => 579
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:58:00
                    [post_date_gmt] => 2015-06-17 22:58:00
                    [post_content] => 
                    [post_title] => Learning Remarkably
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => learning-remarkably
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:58:00
                    [post_modified_gmt] => 2015-06-17 22:58:00
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=579
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [5] => WP_Post Object
                (
                    [ID] => 578
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:56:54
                    [post_date_gmt] => 2015-06-17 22:56:54
                    [post_content] => 
                    [post_title] => NZCER - Explaining Star Assessment Changes
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => nzcer-explaining-star-assessment-changes
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 11:13:23
                    [post_modified_gmt] => 2015-06-17 23:13:23
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=578
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [6] => WP_Post Object
                (
                    [ID] => 577
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:55:35
                    [post_date_gmt] => 2015-06-17 22:55:35
                    [post_content] => 
                    [post_title] => NZPF Moot 2013
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => nzpf-moot-2013
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 11:14:07
                    [post_modified_gmt] => 2015-06-17 23:14:07
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=577
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [7] => WP_Post Object
                (
                    [ID] => 576
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:54:23
                    [post_date_gmt] => 2015-06-17 22:54:23
                    [post_content] => 
                    [post_title] => President's Pen
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => presidents-pen-10
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:54:54
                    [post_modified_gmt] => 2015-06-17 22:54:54
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=576
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [8] => WP_Post Object
                (
                    [ID] => 575
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:53:13
                    [post_date_gmt] => 2015-06-17 22:53:13
                    [post_content] => 
                    [post_title] => Editorial
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => editorial-7
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:53:16
                    [post_modified_gmt] => 2015-06-17 22:53:16
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=575
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

        )

    [2013 Term 1 March Issue] => Array
        (
            [0] => WP_Post Object
                (
                    [ID] => 580
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:59:40
                    [post_date_gmt] => 2015-06-17 22:59:40
                    [post_content] => 
                    [post_title] => Powerful Reflection Activities that Empower Teachers to Change
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => powerful-reflection-activities-that-empower-teachers-to-change
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:59:43
                    [post_modified_gmt] => 2015-06-17 22:59:43
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=580
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [1] => WP_Post Object
                (
                    [ID] => 574
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:51:47
                    [post_date_gmt] => 2015-06-17 22:51:47
                    [post_content] => 
                    [post_title] => Rural Ramblings
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => rural-ramblings
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:51:50
                    [post_modified_gmt] => 2015-06-17 22:51:50
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=574
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [2] => WP_Post Object
                (
                    [ID] => 573
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:50:19
                    [post_date_gmt] => 2015-06-17 22:50:19
                    [post_content] => 
                    [post_title] => School Lines
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => school-lines-6
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:50:22
                    [post_modified_gmt] => 2015-06-17 22:50:22
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=573
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [3] => WP_Post Object
                (
                    [ID] => 572
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:49:42
                    [post_date_gmt] => 2015-06-17 22:49:42
                    [post_content] => 
                    [post_title] => Teaching Students Financial Skills for Life
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => teaching-students-financial-skills-for-life
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:49:45
                    [post_modified_gmt] => 2015-06-17 22:49:45
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=572
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [4] => WP_Post Object
                (
                    [ID] => 571
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:48:17
                    [post_date_gmt] => 2015-06-17 22:48:17
                    [post_content] => 
                    [post_title] => Five Keys to Building and Maintaining Sustainable School Momentum
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => five-keys-to-building-and-maintaining-sustainable-school-momentum
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:48:20
                    [post_modified_gmt] => 2015-06-17 22:48:20
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=571
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [5] => WP_Post Object
                (
                    [ID] => 570
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:47:05
                    [post_date_gmt] => 2015-06-17 22:47:05
                    [post_content] => 
                    [post_title] => NZPF Conference - Claudlands Events' Centre, Hamilton, 9-12 July
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => nzpf-conference-claudlands-events-centre-hamilton-9-12-july
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 11:14:32
                    [post_modified_gmt] => 2015-06-17 23:14:32
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=570
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [6] => WP_Post Object
                (
                    [ID] => 569
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:45:27
                    [post_date_gmt] => 2015-06-17 22:45:27
                    [post_content] => 
                    [post_title] => The Rich Kids
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => the-rich-kids
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:45:31
                    [post_modified_gmt] => 2015-06-17 22:45:31
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=569
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [7] => WP_Post Object
                (
                    [ID] => 568
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:43:22
                    [post_date_gmt] => 2015-06-17 22:43:22
                    [post_content] => 
                    [post_title] => NZPF Honours Outstanding Contributions
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => nzpf-honours-outstanding-contributions
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 11:14:50
                    [post_modified_gmt] => 2015-06-17 23:14:50
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=568
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [8] => WP_Post Object
                (
                    [ID] => 567
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:36:58
                    [post_date_gmt] => 2015-06-17 22:36:58
                    [post_content] => 
                    [post_title] => Obituary
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => obituary
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:37:07
                    [post_modified_gmt] => 2015-06-17 22:37:07
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=567
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [9] => WP_Post Object
                (
                    [ID] => 566
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:36:06
                    [post_date_gmt] => 2015-06-17 22:36:06
                    [post_content] => 
                    [post_title] => Children Massaging Children: Hauora
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => children-massaging-children-hauora
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:36:10
                    [post_modified_gmt] => 2015-06-17 22:36:10
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=566
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [10] => WP_Post Object
                (
                    [ID] => 565
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:34:18
                    [post_date_gmt] => 2015-06-17 22:34:18
                    [post_content] => 
                    [post_title] => President's Pen
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => presidents-pen-9
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:34:20
                    [post_modified_gmt] => 2015-06-17 22:34:20
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=565
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [11] => WP_Post Object
                (
                    [ID] => 564
                    [post_author] => 1
                    [post_date] => 2015-06-18 10:33:10
                    [post_date_gmt] => 2015-06-17 22:33:10
                    [post_content] => 
                    [post_title] => Editorial
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => editorial-6
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-18 10:33:13
                    [post_modified_gmt] => 2015-06-17 22:33:13
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=564
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

        )

    [2012 Term 4 November Issue] => Array
        (
            [0] => WP_Post Object
                (
                    [ID] => 617
                    [post_author] => 1
                    [post_date] => 2015-06-29 15:12:28
                    [post_date_gmt] => 2015-06-29 03:12:28
                    [post_content] => 
                    [post_title] => Rural Ramblings
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => rural-ramblings-2
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 15:12:38
                    [post_modified_gmt] => 2015-06-29 03:12:38
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=617
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [1] => WP_Post Object
                (
                    [ID] => 616
                    [post_author] => 1
                    [post_date] => 2015-06-29 15:11:17
                    [post_date_gmt] => 2015-06-29 03:11:17
                    [post_content] => 
                    [post_title] => School Lines
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => school-lines-8
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 15:11:25
                    [post_modified_gmt] => 2015-06-29 03:11:25
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=616
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [2] => WP_Post Object
                (
                    [ID] => 615
                    [post_author] => 1
                    [post_date] => 2015-06-29 15:10:33
                    [post_date_gmt] => 2015-06-29 03:10:33
                    [post_content] => 
                    [post_title] => Burning the myth about arson
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => burning-the-myth-about-arson
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 15:10:36
                    [post_modified_gmt] => 2015-06-29 03:10:36
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=615
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [3] => WP_Post Object
                (
                    [ID] => 614
                    [post_author] => 1
                    [post_date] => 2015-06-29 15:09:30
                    [post_date_gmt] => 2015-06-29 03:09:30
                    [post_content] => 
                    [post_title] => Appraisal through Te Ariki lens
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => appraisal-through-te-ariki-lens
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 15:09:37
                    [post_modified_gmt] => 2015-06-29 03:09:37
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=614
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [4] => WP_Post Object
                (
                    [ID] => 613
                    [post_author] => 1
                    [post_date] => 2015-06-29 15:07:53
                    [post_date_gmt] => 2015-06-29 03:07:53
                    [post_content] => 
                    [post_title] => State of the nations reports
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => state-of-the-nations-reports
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 15:08:35
                    [post_modified_gmt] => 2015-06-29 03:08:35
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=613
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [5] => WP_Post Object
                (
                    [ID] => 612
                    [post_author] => 1
                    [post_date] => 2015-06-29 15:06:28
                    [post_date_gmt] => 2015-06-29 03:06:28
                    [post_content] => 
                    [post_title] => Eradicating GERMs: The lead message from the Trans-Tasman Conference
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => eradicating-germs-the-lead-message-from-the-trans-tasman-conference
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 15:06:36
                    [post_modified_gmt] => 2015-06-29 03:06:36
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=612
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [6] => WP_Post Object
                (
                    [ID] => 611
                    [post_author] => 1
                    [post_date] => 2015-06-29 15:04:31
                    [post_date_gmt] => 2015-06-29 03:04:31
                    [post_content] => 
                    [post_title] => Public interest threatened by private gain
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => public-interest-threatened-by-private-gain
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 15:04:31
                    [post_modified_gmt] => 2015-06-29 03:04:31
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=611
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [7] => WP_Post Object
                (
                    [ID] => 610
                    [post_author] => 1
                    [post_date] => 2015-06-29 14:58:14
                    [post_date_gmt] => 2015-06-29 02:58:14
                    [post_content] => 
                    [post_title] => Maori achievement in a mainstream school
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => maori-achievement-in-a-mainstream-school
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 14:58:14
                    [post_modified_gmt] => 2015-06-29 02:58:14
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=610
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [8] => WP_Post Object
                (
                    [ID] => 609
                    [post_author] => 1
                    [post_date] => 2015-06-29 14:56:39
                    [post_date_gmt] => 2015-06-29 02:56:39
                    [post_content] => 
                    [post_title] => NZPF Election Results
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => nzpf-election-results
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 14:56:39
                    [post_modified_gmt] => 2015-06-29 02:56:39
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=609
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [9] => WP_Post Object
                (
                    [ID] => 607
                    [post_author] => 1
                    [post_date] => 2015-06-29 14:55:42
                    [post_date_gmt] => 2015-06-29 02:55:42
                    [post_content] => 
                    [post_title] => President's Pen
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => presidents-pen-11
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 14:55:46
                    [post_modified_gmt] => 2015-06-29 02:55:46
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=607
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [10] => WP_Post Object
                (
                    [ID] => 606
                    [post_author] => 1
                    [post_date] => 2015-06-29 14:54:53
                    [post_date_gmt] => 2015-06-29 02:54:53
                    [post_content] => 
                    [post_title] => Editorial
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => editorial-8
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 14:54:53
                    [post_modified_gmt] => 2015-06-29 02:54:53
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=606
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

        )

    [2012 Term 3 September Issue] => Array
        (
            [0] => WP_Post Object
                (
                    [ID] => 628
                    [post_author] => 1
                    [post_date] => 2015-06-29 15:37:58
                    [post_date_gmt] => 2015-06-29 03:37:58
                    [post_content] => 
                    [post_title] => Rural Ramblings
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => rural-ramblings-3
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 15:38:13
                    [post_modified_gmt] => 2015-06-29 03:38:13
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=628
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [1] => WP_Post Object
                (
                    [ID] => 627
                    [post_author] => 1
                    [post_date] => 2015-06-29 15:35:15
                    [post_date_gmt] => 2015-06-29 03:35:15
                    [post_content] => 
                    [post_title] => School Lines
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => school-lines-9
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 15:35:23
                    [post_modified_gmt] => 2015-06-29 03:35:23
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=627
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [2] => WP_Post Object
                (
                    [ID] => 626
                    [post_author] => 1
                    [post_date] => 2015-06-29 15:34:45
                    [post_date_gmt] => 2015-06-29 03:34:45
                    [post_content] => 
                    [post_title] => Homophobic bullying, suicide and the primary school
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => homophobic-bullying-suicide-and-the-primary-school
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 15:34:53
                    [post_modified_gmt] => 2015-06-29 03:34:53
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=626
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [3] => WP_Post Object
                (
                    [ID] => 625
                    [post_author] => 1
                    [post_date] => 2015-06-29 15:31:28
                    [post_date_gmt] => 2015-06-29 03:31:28
                    [post_content] => 
                    [post_title] => Raglan area school - TE KURA A ROHE O WHAINGAROA - Celebrating rural education in a bi-cultural environment
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => raglan-area-school-te-kura-a-rohe-o-whaingaroa-celebrating-rural-education-in-a-bi-cultural-environment
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 15:32:52
                    [post_modified_gmt] => 2015-06-29 03:32:52
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=625
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [4] => WP_Post Object
                (
                    [ID] => 624
                    [post_author] => 1
                    [post_date] => 2015-06-29 15:26:28
                    [post_date_gmt] => 2015-06-29 03:26:28
                    [post_content] => 
                    [post_title] => Schooling by rural delivery - Te Kowhai School at the heart of Waikato's Dairy District
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => schooling-by-rural-delivery-te-kowhai-school-at-the-heart-of-waikatos-dairy-district
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 15:26:30
                    [post_modified_gmt] => 2015-06-29 03:26:30
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=624
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [5] => WP_Post Object
                (
                    [ID] => 623
                    [post_author] => 1
                    [post_date] => 2015-06-29 15:20:50
                    [post_date_gmt] => 2015-06-29 03:20:50
                    [post_content] => 
                    [post_title] => Rural Education Reference Group (RERG)
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => rural-education-reference-group-rerg
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 15:23:05
                    [post_modified_gmt] => 2015-06-29 03:23:05
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=623
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [6] => WP_Post Object
                (
                    [ID] => 622
                    [post_author] => 1
                    [post_date] => 2015-06-29 15:19:24
                    [post_date_gmt] => 2015-06-29 03:19:24
                    [post_content] => 
                    [post_title] => Christchurch Bays Cluster Collaboration Model
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => christchurch-bays-cluster-collaboration-model
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 15:19:29
                    [post_modified_gmt] => 2015-06-29 03:19:29
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=622
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [7] => WP_Post Object
                (
                    [ID] => 621
                    [post_author] => 1
                    [post_date] => 2015-06-29 15:17:54
                    [post_date_gmt] => 2015-06-29 03:17:54
                    [post_content] => 
                    [post_title] => Learning Culture at Te Aute College
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => learning-culture-at-te-aute-college
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 15:17:59
                    [post_modified_gmt] => 2015-06-29 03:17:59
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=621
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [8] => WP_Post Object
                (
                    [ID] => 620
                    [post_author] => 1
                    [post_date] => 2015-06-29 15:16:19
                    [post_date_gmt] => 2015-06-29 03:16:19
                    [post_content] => 
                    [post_title] => Metro's School Rankings
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => metros-school-rankings
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 15:16:23
                    [post_modified_gmt] => 2015-06-29 03:16:23
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=620
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [9] => WP_Post Object
                (
                    [ID] => 619
                    [post_author] => 1
                    [post_date] => 2015-06-29 15:15:10
                    [post_date_gmt] => 2015-06-29 03:15:10
                    [post_content] => 
                    [post_title] => President's Pen - Ethics before economics
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => presidents-pen-ethics-before-economics
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 15:15:25
                    [post_modified_gmt] => 2015-06-29 03:15:25
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=619
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [10] => WP_Post Object
                (
                    [ID] => 618
                    [post_author] => 1
                    [post_date] => 2015-06-29 15:13:38
                    [post_date_gmt] => 2015-06-29 03:13:38
                    [post_content] => 
                    [post_title] => Editorial
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => editorial-9
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 15:13:49
                    [post_modified_gmt] => 2015-06-29 03:13:49
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=618
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

        )

    [2012 Term 2 June Issue] => Array
        (
            [0] => WP_Post Object
                (
                    [ID] => 639
                    [post_author] => 1
                    [post_date] => 2015-06-29 16:34:34
                    [post_date_gmt] => 2015-06-29 04:34:34
                    [post_content] => 
                    [post_title] => Rural Ramblings
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => rural-ramblings-4
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 16:34:47
                    [post_modified_gmt] => 2015-06-29 04:34:47
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=639
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [1] => WP_Post Object
                (
                    [ID] => 638
                    [post_author] => 1
                    [post_date] => 2015-06-29 16:32:30
                    [post_date_gmt] => 2015-06-29 04:32:30
                    [post_content] => 
                    [post_title] => School Lines
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => school-lines-10
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 16:32:51
                    [post_modified_gmt] => 2015-06-29 04:32:51
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=638
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [2] => WP_Post Object
                (
                    [ID] => 637
                    [post_author] => 1
                    [post_date] => 2015-06-29 16:31:54
                    [post_date_gmt] => 2015-06-29 04:31:54
                    [post_content] => 
                    [post_title] => Solutions to inequality in school achievement
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => solutions-to-inequality-in-school-achievement
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 16:32:05
                    [post_modified_gmt] => 2015-06-29 04:32:05
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=637
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [3] => WP_Post Object
                (
                    [ID] => 636
                    [post_author] => 1
                    [post_date] => 2015-06-29 16:28:12
                    [post_date_gmt] => 2015-06-29 04:28:12
                    [post_content] => 
                    [post_title] => Going beyond the school gates for our gifted kids
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => going-beyond-the-school-gates-for-our-gifted-kids
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 16:29:59
                    [post_modified_gmt] => 2015-06-29 04:29:59
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=636
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [4] => WP_Post Object
                (
                    [ID] => 635
                    [post_author] => 1
                    [post_date] => 2015-06-29 16:27:07
                    [post_date_gmt] => 2015-06-29 04:27:07
                    [post_content] => 
                    [post_title] => Principal(ly) yours: State-of-the -art schooling in a Wellington suburb
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => principally-yours-state-of-the-art-schooling-in-a-wellington-suburb
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 16:27:10
                    [post_modified_gmt] => 2015-06-29 04:27:10
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=635
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [5] => WP_Post Object
                (
                    [ID] => 634
                    [post_author] => 1
                    [post_date] => 2015-06-29 15:48:25
                    [post_date_gmt] => 2015-06-29 03:48:25
                    [post_content] => 
                    [post_title] => Successful NZ School Principals
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => successful-nz-school-principals
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 16:24:48
                    [post_modified_gmt] => 2015-06-29 04:24:48
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=634
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [6] => WP_Post Object
                (
                    [ID] => 633
                    [post_author] => 1
                    [post_date] => 2015-06-29 15:47:17
                    [post_date_gmt] => 2015-06-29 03:47:17
                    [post_content] => 
                    [post_title] => Self-regulated learning skills - A pilot study
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => self-regulated-learning-skills-a-pilot-study
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 15:47:25
                    [post_modified_gmt] => 2015-06-29 03:47:25
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=633
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [7] => WP_Post Object
                (
                    [ID] => 632
                    [post_author] => 1
                    [post_date] => 2015-06-29 15:43:47
                    [post_date_gmt] => 2015-06-29 03:43:47
                    [post_content] => 
                    [post_title] => Raising Maori Achievement
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => raising-maori-achievement
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 15:46:24
                    [post_modified_gmt] => 2015-06-29 03:46:24
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=632
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [8] => WP_Post Object
                (
                    [ID] => 631
                    [post_author] => 1
                    [post_date] => 2015-06-29 15:42:19
                    [post_date_gmt] => 2015-06-29 03:42:19
                    [post_content] => 
                    [post_title] => Charter schools: An investigation
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => charter-schools-an-investigation
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 15:42:43
                    [post_modified_gmt] => 2015-06-29 03:42:43
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=631
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [9] => WP_Post Object
                (
                    [ID] => 630
                    [post_author] => 1
                    [post_date] => 2015-06-29 15:39:53
                    [post_date_gmt] => 2015-06-29 03:39:53
                    [post_content] => 
                    [post_title] => President's Pen - Reflecting on reforms
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => presidents-pen-reflecting-on-reforms
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 15:40:02
                    [post_modified_gmt] => 2015-06-29 03:40:02
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=630
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [10] => WP_Post Object
                (
                    [ID] => 629
                    [post_author] => 1
                    [post_date] => 2015-06-29 15:38:50
                    [post_date_gmt] => 2015-06-29 03:38:50
                    [post_content] => 
                    [post_title] => Editorial
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => editorial-10
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 15:39:00
                    [post_modified_gmt] => 2015-06-29 03:39:00
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=629
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

        )

    [2012 Term 1 March Issue] => Array
        (
            [0] => WP_Post Object
                (
                    [ID] => 652
                    [post_author] => 1
                    [post_date] => 2015-06-29 17:03:40
                    [post_date_gmt] => 2015-06-29 05:03:40
                    [post_content] => 
                    [post_title] => Rural Ramblings
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => rural-ramblings-5
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 17:04:22
                    [post_modified_gmt] => 2015-06-29 05:04:22
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=652
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [1] => WP_Post Object
                (
                    [ID] => 651
                    [post_author] => 1
                    [post_date] => 2015-06-29 17:03:08
                    [post_date_gmt] => 2015-06-29 05:03:08
                    [post_content] => 
                    [post_title] => School Lines
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => school-lines-11
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 17:03:16
                    [post_modified_gmt] => 2015-06-29 05:03:16
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=651
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [2] => WP_Post Object
                (
                    [ID] => 650
                    [post_author] => 1
                    [post_date] => 2015-06-29 17:02:36
                    [post_date_gmt] => 2015-06-29 05:02:36
                    [post_content] => 
                    [post_title] => Principal Appraisals
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => principal-appraisals
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 17:02:39
                    [post_modified_gmt] => 2015-06-29 05:02:39
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=650
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [3] => WP_Post Object
                (
                    [ID] => 649
                    [post_author] => 1
                    [post_date] => 2015-06-29 17:01:28
                    [post_date_gmt] => 2015-06-29 05:01:28
                    [post_content] => 
                    [post_title] => Liz Millar retires from NZPF executive after eight illustrious years of service
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => liz-millar-retires-from-nzpf-executive-after-eight-illustrious-years-of-service
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 17:01:37
                    [post_modified_gmt] => 2015-06-29 05:01:37
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=649
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [4] => WP_Post Object
                (
                    [ID] => 648
                    [post_author] => 1
                    [post_date] => 2015-06-29 16:57:17
                    [post_date_gmt] => 2015-06-29 04:57:17
                    [post_content] => 
                    [post_title] => Hillcrest Normal - Another example of the success of enviroschools
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => hillcrest-normal-another-example-of-the-success-of-enviroschools
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 16:57:38
                    [post_modified_gmt] => 2015-06-29 04:57:38
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=648
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [5] => WP_Post Object
                (
                    [ID] => 647
                    [post_author] => 1
                    [post_date] => 2015-06-29 16:56:23
                    [post_date_gmt] => 2015-06-29 04:56:23
                    [post_content] => 
                    [post_title] => Capturing the culture of enviroschools
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => capturing-the-culture-of-enviroschools
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 16:56:26
                    [post_modified_gmt] => 2015-06-29 04:56:26
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=647
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [6] => WP_Post Object
                (
                    [ID] => 646
                    [post_author] => 1
                    [post_date] => 2015-06-29 16:49:01
                    [post_date_gmt] => 2015-06-29 04:49:01
                    [post_content] => 
                    [post_title] => Principal(ly) yours: Enviroschools celebrate tenth birthday
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => principally-yours-enviroschools-celebrate-tenth-birthday
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 16:53:44
                    [post_modified_gmt] => 2015-06-29 04:53:44
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=646
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [7] => WP_Post Object
                (
                    [ID] => 645
                    [post_author] => 1
                    [post_date] => 2015-06-29 16:46:32
                    [post_date_gmt] => 2015-06-29 04:46:32
                    [post_content] => 
                    [post_title] => Class size - does it matter ?
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => class-size-does-it-matter
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 16:47:03
                    [post_modified_gmt] => 2015-06-29 04:47:03
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=645
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [8] => WP_Post Object
                (
                    [ID] => 644
                    [post_author] => 1
                    [post_date] => 2015-06-29 16:45:33
                    [post_date_gmt] => 2015-06-29 04:45:33
                    [post_content] => 
                    [post_title] => Can national standards close the achievement gap?
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => can-national-standards-close-the-achievement-gap
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 16:45:55
                    [post_modified_gmt] => 2015-06-29 04:45:55
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=644
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [9] => WP_Post Object
                (
                    [ID] => 643
                    [post_author] => 1
                    [post_date] => 2015-06-29 16:44:01
                    [post_date_gmt] => 2015-06-29 04:44:01
                    [post_content] => 
                    [post_title] => Gifted and Talented Children: The Invercargill Experience
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => gifted-and-talented-children-the-invercargill-experience
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 16:44:48
                    [post_modified_gmt] => 2015-06-29 04:44:48
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=643
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [10] => WP_Post Object
                (
                    [ID] => 642
                    [post_author] => 1
                    [post_date] => 2015-06-29 16:37:54
                    [post_date_gmt] => 2015-06-29 04:37:54
                    [post_content] => 
                    [post_title] => Te MARAUTANGA O AOTEAROA
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => te-marautanga-o-aotearoa
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 16:42:36
                    [post_modified_gmt] => 2015-06-29 04:42:36
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=642
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [11] => WP_Post Object
                (
                    [ID] => 641
                    [post_author] => 1
                    [post_date] => 2015-06-29 16:36:02
                    [post_date_gmt] => 2015-06-29 04:36:02
                    [post_content] => 
                    [post_title] => President's Pen
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => presidents-pen-12
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 16:36:15
                    [post_modified_gmt] => 2015-06-29 04:36:15
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=641
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

            [12] => WP_Post Object
                (
                    [ID] => 640
                    [post_author] => 1
                    [post_date] => 2015-06-29 16:35:19
                    [post_date_gmt] => 2015-06-29 04:35:19
                    [post_content] => 
                    [post_title] => Editorial
                    [post_excerpt] => 
                    [post_status] => publish
                    [comment_status] => closed
                    [ping_status] => closed
                    [post_password] => 
                    [post_name] => editorial-11
                    [to_ping] => 
                    [pinged] => 
                    [post_modified] => 2015-06-29 16:35:27
                    [post_modified_gmt] => 2015-06-29 04:35:27
                    [post_content_filtered] => 
                    [post_parent] => 0
                    [guid] => http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=640
                    [menu_order] => 0
                    [post_type] => dsarticle
                    [post_mime_type] => 
                    [comment_count] => 0
                    [filter] => raw
                )

        )

)

Open in new window

Avatar of Ray Paseur
Ray Paseur
Flag of United States of America image

These code samples are thousands of lines long and we would have to reformat the code snippets in order to create a test case.  No offense, but that puts a lot of work on the E-E volunteers.  Is there any possibility that you can give us useful PHP statements instead of print_r() output?  Maybe something with var_export() information?  With questions like this we can help best when we have clear visualization of two things: (1) the inputs you already have and (2) the outputs you want to create.  We never need to see any code that does not work - just a useful and representative subset of the data set. Thanks!

PHP sorting is well implemented and  documented in the online man pages.
http://php.net/manual/en/array.sorting.php
Avatar of Jeremy Leys

ASKER

I am very sorry for formating this question in a hard to work with way, thank you for pointing out a way I could better supply test data.

Descending example using var_export

array (
  '2013 Term 1 March Issue' => 
  array (
    0 => 
    WP_Post::__set_state(array(
       'ID' => 564,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:33:10',
       'post_date_gmt' => '2015-06-17 22:33:10',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editorial-6',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:33:13',
       'post_modified_gmt' => '2015-06-17 22:33:13',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=564',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 => 
    WP_Post::__set_state(array(
       'ID' => 565,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:34:18',
       'post_date_gmt' => '2015-06-17 22:34:18',
       'post_content' => '',
       'post_title' => 'President\'s Pen',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen-9',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:34:20',
       'post_modified_gmt' => '2015-06-17 22:34:20',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=565',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 => 
    WP_Post::__set_state(array(
       'ID' => 566,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:36:06',
       'post_date_gmt' => '2015-06-17 22:36:06',
       'post_content' => '',
       'post_title' => 'Children Massaging Children: Hauora',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'children-massaging-children-hauora',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:36:10',
       'post_modified_gmt' => '2015-06-17 22:36:10',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=566',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 => 
    WP_Post::__set_state(array(
       'ID' => 567,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:36:58',
       'post_date_gmt' => '2015-06-17 22:36:58',
       'post_content' => '',
       'post_title' => 'Obituary',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'obituary',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:37:07',
       'post_modified_gmt' => '2015-06-17 22:37:07',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=567',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 => 
    WP_Post::__set_state(array(
       'ID' => 568,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:43:22',
       'post_date_gmt' => '2015-06-17 22:43:22',
       'post_content' => '',
       'post_title' => 'NZPF Honours Outstanding Contributions',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'nzpf-honours-outstanding-contributions',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 11:14:50',
       'post_modified_gmt' => '2015-06-17 23:14:50',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=568',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    5 => 
    WP_Post::__set_state(array(
       'ID' => 569,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:45:27',
       'post_date_gmt' => '2015-06-17 22:45:27',
       'post_content' => '',
       'post_title' => 'The Rich Kids',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'the-rich-kids',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:45:31',
       'post_modified_gmt' => '2015-06-17 22:45:31',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=569',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    6 => 
    WP_Post::__set_state(array(
       'ID' => 570,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:47:05',
       'post_date_gmt' => '2015-06-17 22:47:05',
       'post_content' => '',
       'post_title' => 'NZPF Conference - Claudlands Events\' Centre, Hamilton, 9-12 July',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'nzpf-conference-claudlands-events-centre-hamilton-9-12-july',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 11:14:32',
       'post_modified_gmt' => '2015-06-17 23:14:32',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=570',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    7 => 
    WP_Post::__set_state(array(
       'ID' => 571,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:48:17',
       'post_date_gmt' => '2015-06-17 22:48:17',
       'post_content' => '',
       'post_title' => 'Five Keys to Building and Maintaining Sustainable School Momentum',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'five-keys-to-building-and-maintaining-sustainable-school-momentum',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:48:20',
       'post_modified_gmt' => '2015-06-17 22:48:20',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=571',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    8 => 
    WP_Post::__set_state(array(
       'ID' => 572,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:49:42',
       'post_date_gmt' => '2015-06-17 22:49:42',
       'post_content' => '',
       'post_title' => 'Teaching Students Financial Skills for Life',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'teaching-students-financial-skills-for-life',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:49:45',
       'post_modified_gmt' => '2015-06-17 22:49:45',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=572',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    9 => 
    WP_Post::__set_state(array(
       'ID' => 573,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:50:19',
       'post_date_gmt' => '2015-06-17 22:50:19',
       'post_content' => '',
       'post_title' => 'School Lines',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'school-lines-6',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:50:22',
       'post_modified_gmt' => '2015-06-17 22:50:22',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=573',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    10 => 
    WP_Post::__set_state(array(
       'ID' => 574,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:51:47',
       'post_date_gmt' => '2015-06-17 22:51:47',
       'post_content' => '',
       'post_title' => 'Rural Ramblings',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'rural-ramblings',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:51:50',
       'post_modified_gmt' => '2015-06-17 22:51:50',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=574',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    11 => 
    WP_Post::__set_state(array(
       'ID' => 580,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:59:40',
       'post_date_gmt' => '2015-06-17 22:59:40',
       'post_content' => '',
       'post_title' => 'Powerful Reflection Activities that Empower Teachers to Change',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'powerful-reflection-activities-that-empower-teachers-to-change',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:59:43',
       'post_modified_gmt' => '2015-06-17 22:59:43',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=580',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
  '2013 Term 2 June Issue' => 
  array (
    0 => 
    WP_Post::__set_state(array(
       'ID' => 575,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:53:13',
       'post_date_gmt' => '2015-06-17 22:53:13',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editorial-7',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:53:16',
       'post_modified_gmt' => '2015-06-17 22:53:16',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=575',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 => 
    WP_Post::__set_state(array(
       'ID' => 576,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:54:23',
       'post_date_gmt' => '2015-06-17 22:54:23',
       'post_content' => '',
       'post_title' => 'President\'s Pen',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen-10',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:54:54',
       'post_modified_gmt' => '2015-06-17 22:54:54',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=576',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 => 
    WP_Post::__set_state(array(
       'ID' => 577,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:55:35',
       'post_date_gmt' => '2015-06-17 22:55:35',
       'post_content' => '',
       'post_title' => 'NZPF Moot 2013',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'nzpf-moot-2013',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 11:14:07',
       'post_modified_gmt' => '2015-06-17 23:14:07',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=577',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 => 
    WP_Post::__set_state(array(
       'ID' => 578,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:56:54',
       'post_date_gmt' => '2015-06-17 22:56:54',
       'post_content' => '',
       'post_title' => 'NZCER - Explaining Star Assessment Changes',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'nzcer-explaining-star-assessment-changes',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 11:13:23',
       'post_modified_gmt' => '2015-06-17 23:13:23',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=578',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 => 
    WP_Post::__set_state(array(
       'ID' => 579,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:58:00',
       'post_date_gmt' => '2015-06-17 22:58:00',
       'post_content' => '',
       'post_title' => 'Learning Remarkably',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'learning-remarkably',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:58:00',
       'post_modified_gmt' => '2015-06-17 22:58:00',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=579',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
  '2013 Term 3 September Issue' => 
  array (
    0 => 
    WP_Post::__set_state(array(
       'ID' => 517,
       'post_author' => '1',
       'post_date' => '2015-06-16 22:22:15',
       'post_date_gmt' => '2015-06-16 10:22:15',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editoral-3',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 09:17:21',
       'post_modified_gmt' => '2015-06-17 21:17:21',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=517',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 => 
    WP_Post::__set_state(array(
       'ID' => 518,
       'post_author' => '1',
       'post_date' => '2015-06-16 22:23:25',
       'post_date_gmt' => '2015-06-16 10:23:25',
       'post_content' => '',
       'post_title' => 'President\'s Pen',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen-6',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 22:23:29',
       'post_modified_gmt' => '2015-06-16 10:23:29',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=518',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 => 
    WP_Post::__set_state(array(
       'ID' => 519,
       'post_author' => '1',
       'post_date' => '2015-06-16 22:25:59',
       'post_date_gmt' => '2015-06-16 10:25:59',
       'post_content' => '',
       'post_title' => 'Matauranga Maori an NZPF initiative',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'matauranga-maori-an-nzpf-initiative',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 22:26:21',
       'post_modified_gmt' => '2015-06-16 10:26:21',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=519',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 => 
    WP_Post::__set_state(array(
       'ID' => 531,
       'post_author' => '1',
       'post_date' => '2015-06-17 15:39:17',
       'post_date_gmt' => '2015-06-17 03:39:17',
       'post_content' => '',
       'post_title' => '\'Willowbank School\' In thirty languages',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'willowbank-school-in-thirty-languages',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 15:39:20',
       'post_modified_gmt' => '2015-06-17 03:39:20',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=531',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 => 
    WP_Post::__set_state(array(
       'ID' => 532,
       'post_author' => '1',
       'post_date' => '2015-06-17 15:47:52',
       'post_date_gmt' => '2015-06-17 03:47:52',
       'post_content' => '',
       'post_title' => 'Principals\' Advise - Helping Principals achieve a successful outcome',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'principals-advise-helping-principals-achieve-a-successful-outcome',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 15:47:52',
       'post_modified_gmt' => '2015-06-17 03:47:52',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=532',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    5 => 
    WP_Post::__set_state(array(
       'ID' => 533,
       'post_author' => '1',
       'post_date' => '2015-06-17 15:50:05',
       'post_date_gmt' => '2015-06-17 03:50:05',
       'post_content' => '',
       'post_title' => 'Cow bells call principals to conference - Power to innovate - NZPF National Conference',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'cow-bells-call-principals-to-conference-power-to-innovate-nzpf-national-conference',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 15:50:05',
       'post_modified_gmt' => '2015-06-17 03:50:05',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=533',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    6 => 
    WP_Post::__set_state(array(
       'ID' => 534,
       'post_author' => '1',
       'post_date' => '2015-06-17 15:50:51',
       'post_date_gmt' => '2015-06-17 03:50:51',
       'post_content' => '',
       'post_title' => 'Should we use cognitive enhancers?',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'should-we-use-cognitive-enhancers',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 15:50:51',
       'post_modified_gmt' => '2015-06-17 03:50:51',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=534',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    7 => 
    WP_Post::__set_state(array(
       'ID' => 535,
       'post_author' => '1',
       'post_date' => '2015-06-17 15:52:06',
       'post_date_gmt' => '2015-06-17 03:52:06',
       'post_content' => '',
       'post_title' => 'School lines',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'school-lines-5',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 15:52:06',
       'post_modified_gmt' => '2015-06-17 03:52:06',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=535',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    8 => 
    WP_Post::__set_state(array(
       'ID' => 536,
       'post_author' => '1',
       'post_date' => '2015-06-17 15:52:49',
       'post_date_gmt' => '2015-06-17 03:52:49',
       'post_content' => '',
       'post_title' => 'What\'s on top - Then there were none',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'whats-on-top-then-there-were-none',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 15:52:51',
       'post_modified_gmt' => '2015-06-17 03:52:51',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=536',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
  '2013 Term 4 November Issue' => 
  array (
    0 => 
    WP_Post::__set_state(array(
       'ID' => 551,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:04:16',
       'post_date_gmt' => '2015-06-17 22:04:16',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editorial-5',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:04:20',
       'post_modified_gmt' => '2015-06-17 22:04:20',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=551',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 => 
    WP_Post::__set_state(array(
       'ID' => 554,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:05:38',
       'post_date_gmt' => '2015-06-17 22:05:38',
       'post_content' => '',
       'post_title' => 'President\'s Pen',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen-8',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:05:41',
       'post_modified_gmt' => '2015-06-17 22:05:41',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=554',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 => 
    WP_Post::__set_state(array(
       'ID' => 555,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:06:52',
       'post_date_gmt' => '2015-06-17 22:06:52',
       'post_content' => '',
       'post_title' => 'The National Aspiring Principals\' Programme',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'the-national-aspiring-principals-programme',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:06:56',
       'post_modified_gmt' => '2015-06-17 22:06:56',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=555',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 => 
    WP_Post::__set_state(array(
       'ID' => 556,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:08:40',
       'post_date_gmt' => '2015-06-17 22:08:40',
       'post_content' => '',
       'post_title' => 'Reading Recovery and Beyond',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'reading-recovery-beyond',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:10:11',
       'post_modified_gmt' => '2015-06-17 22:10:11',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=556',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 => 
    WP_Post::__set_state(array(
       'ID' => 557,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:12:08',
       'post_date_gmt' => '2015-06-17 22:12:08',
       'post_content' => '',
       'post_title' => 'Managing the return to school following \'Stand Down\'',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'managing-the-return-to-school-following-stand-down',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:12:11',
       'post_modified_gmt' => '2015-06-17 22:12:11',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=557',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    5 => 
    WP_Post::__set_state(array(
       'ID' => 558,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:13:15',
       'post_date_gmt' => '2015-06-17 22:13:15',
       'post_content' => '',
       'post_title' => 'Highlights at Hillsborough',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'highlights-at-hillsborough',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:13:20',
       'post_modified_gmt' => '2015-06-17 22:13:20',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=558',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    6 => 
    WP_Post::__set_state(array(
       'ID' => 559,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:16:02',
       'post_date_gmt' => '2015-06-17 22:16:02',
       'post_content' => '',
       'post_title' => 'The Manufacture of Education Myths and Mantras - some reflections on the Christchurch school renewal project',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'the-manufacture-of-education-myths-and-mantras-some-reflections-on-the-christchurch-school-renewal-project',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:17:33',
       'post_modified_gmt' => '2015-06-17 22:17:33',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=559',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    7 => 
    WP_Post::__set_state(array(
       'ID' => 560,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:18:33',
       'post_date_gmt' => '2015-06-17 22:18:33',
       'post_content' => '',
       'post_title' => 'Hidden Politics of Tomorrow\'s Schools',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'hidden-politics-of-tomorrows-schools',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:18:36',
       'post_modified_gmt' => '2015-06-17 22:18:36',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=560',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    8 => 
    WP_Post::__set_state(array(
       'ID' => 561,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:20:57',
       'post_date_gmt' => '2015-06-17 22:20:57',
       'post_content' => '',
       'post_title' => 'Revitalising the Role of Public Education - an alternative to the growing privatisation of education',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'revitalising-the-role-of-public-education-an-alternative-to-the-growing-privatisation-of-education',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:21:01',
       'post_modified_gmt' => '2015-06-17 22:21:01',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=561',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    9 => 
    WP_Post::__set_state(array(
       'ID' => 562,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:23:18',
       'post_date_gmt' => '2015-06-17 22:23:18',
       'post_content' => '',
       'post_title' => 'School Lines - children are children, and statistics are numbers',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'school-lines-children-are-children-and-statistics-are-numbers',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:23:25',
       'post_modified_gmt' => '2015-06-17 22:23:25',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=562',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    10 => 
    WP_Post::__set_state(array(
       'ID' => 563,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:24:20',
       'post_date_gmt' => '2015-06-17 22:24:20',
       'post_content' => '',
       'post_title' => 'What\'s on Top - Tragedy as a source of strength...',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'whats-on-top-tragedy-as-a-source-of-strength',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:24:22',
       'post_modified_gmt' => '2015-06-17 22:24:22',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=563',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
  '2014 Term 1 March Issue' => 
  array (
    0 => 
    WP_Post::__set_state(array(
       'ID' => 537,
       'post_author' => '1',
       'post_date' => '2015-06-17 16:24:31',
       'post_date_gmt' => '2015-06-17 04:24:31',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editorial-4',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 16:24:33',
       'post_modified_gmt' => '2015-06-17 04:24:33',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=537',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 => 
    WP_Post::__set_state(array(
       'ID' => 538,
       'post_author' => '1',
       'post_date' => '2015-06-17 16:25:36',
       'post_date_gmt' => '2015-06-17 04:25:36',
       'post_content' => '',
       'post_title' => 'President\'s Pen',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen-7',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 16:25:40',
       'post_modified_gmt' => '2015-06-17 04:25:40',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=538',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 => 
    WP_Post::__set_state(array(
       'ID' => 539,
       'post_author' => '1',
       'post_date' => '2015-06-17 16:26:31',
       'post_date_gmt' => '2015-06-17 04:26:31',
       'post_content' => '',
       'post_title' => 'NZPF Executive Members retire',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'nzpf-executive-members-retire',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 16:26:33',
       'post_modified_gmt' => '2015-06-17 04:26:33',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=539',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 => 
    WP_Post::__set_state(array(
       'ID' => 540,
       'post_author' => '1',
       'post_date' => '2015-06-17 16:27:41',
       'post_date_gmt' => '2015-06-17 04:27:41',
       'post_content' => '',
       'post_title' => 'More bad news for national standards',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'more-bad-news-for-national-standards',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 16:27:45',
       'post_modified_gmt' => '2015-06-17 04:27:45',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=540',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 => 
    WP_Post::__set_state(array(
       'ID' => 541,
       'post_author' => '1',
       'post_date' => '2015-06-18 09:31:37',
       'post_date_gmt' => '2015-06-17 21:31:37',
       'post_content' => '',
       'post_title' => 'Educational inequalities will not be reduced using business process models',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'educational-inequalities-will-not-be-reduced-using-business-process-models',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 09:35:43',
       'post_modified_gmt' => '2015-06-17 21:35:43',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=541',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    5 => 
    WP_Post::__set_state(array(
       'ID' => 542,
       'post_author' => '1',
       'post_date' => '2015-06-18 09:42:11',
       'post_date_gmt' => '2015-06-17 21:42:11',
       'post_content' => '',
       'post_title' => 'Does NZ have a long tail of underachievement? - Getting to the truth of the matter',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'does-nz-have-a-long-tail-of-underachievement-getting-to-the-truth-of-the-matter',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 09:42:19',
       'post_modified_gmt' => '2015-06-17 21:42:19',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=542',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    6 => 
    WP_Post::__set_state(array(
       'ID' => 543,
       'post_author' => '1',
       'post_date' => '2015-06-18 09:51:09',
       'post_date_gmt' => '2015-06-17 21:51:09',
       'post_content' => '',
       'post_title' => 'Moving on up in Manurewa - The story of Manurewa Intermediate School',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'moving-on-up-in-manurewa-the-story-of-manurewa-intermediate-school',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 09:51:17',
       'post_modified_gmt' => '2015-06-17 21:51:17',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=543',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    7 => 
    WP_Post::__set_state(array(
       'ID' => 544,
       'post_author' => '1',
       'post_date' => '2015-06-18 09:55:35',
       'post_date_gmt' => '2015-06-17 21:55:35',
       'post_content' => '',
       'post_title' => 'A Principle to Govern Education Policy - Abolishing National Standards',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'a-principle-to-govern-education-policy-abolishing-national-standards',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 09:55:40',
       'post_modified_gmt' => '2015-06-17 21:55:40',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=544',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    8 => 
    WP_Post::__set_state(array(
       'ID' => 546,
       'post_author' => '1',
       'post_date' => '2015-06-18 09:57:44',
       'post_date_gmt' => '2015-06-17 21:57:44',
       'post_content' => '',
       'post_title' => 'School Lines - Sceptical, Cynical, Critically Analytical, or Naive?',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'school-lines-sceptical-cynical-critically-analytical-or-naive',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 09:57:48',
       'post_modified_gmt' => '2015-06-17 21:57:48',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=546',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    9 => 
    WP_Post::__set_state(array(
       'ID' => 548,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:02:09',
       'post_date_gmt' => '2015-06-17 22:02:09',
       'post_content' => '',
       'post_title' => 'What\'s on Top? - The wonders of modern technology...',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'whats-on-top-the-wonders-of-modern-technology',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:02:16',
       'post_modified_gmt' => '2015-06-17 22:02:16',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=548',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
  '2014 Term 2 June Issue' => 
  array (
    0 => 
    WP_Post::__set_state(array(
       'ID' => 460,
       'post_author' => '1',
       'post_date' => '2015-06-15 13:22:38',
       'post_date_gmt' => '2015-06-15 01:22:38',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editorial-2',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-15 14:48:50',
       'post_modified_gmt' => '2015-06-15 02:48:50',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=460',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 => 
    WP_Post::__set_state(array(
       'ID' => 461,
       'post_author' => '1',
       'post_date' => '2015-06-15 13:24:41',
       'post_date_gmt' => '2015-06-15 01:24:41',
       'post_content' => '',
       'post_title' => 'President\'s Pen',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen-4',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-15 14:48:06',
       'post_modified_gmt' => '2015-06-15 02:48:06',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=461',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 => 
    WP_Post::__set_state(array(
       'ID' => 462,
       'post_author' => '1',
       'post_date' => '2015-06-15 13:37:12',
       'post_date_gmt' => '2015-06-15 01:37:12',
       'post_content' => '',
       'post_title' => 'NZPF Moot',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'nzpf-moot-2',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-15 14:47:45',
       'post_modified_gmt' => '2015-06-15 02:47:45',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=462',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 => 
    WP_Post::__set_state(array(
       'ID' => 463,
       'post_author' => '1',
       'post_date' => '2015-06-15 13:44:11',
       'post_date_gmt' => '2015-06-15 01:44:11',
       'post_content' => '',
       'post_title' => 'Gifted Curriculum in New Zealand: A road less travelled',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'gifted-curriculum-in-new-zealand-a-road-less-travelled',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-15 14:47:29',
       'post_modified_gmt' => '2015-06-15 02:47:29',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=463',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 => 
    WP_Post::__set_state(array(
       'ID' => 464,
       'post_author' => '1',
       'post_date' => '2015-06-15 14:01:29',
       'post_date_gmt' => '2015-06-15 02:01:29',
       'post_content' => '',
       'post_title' => 'Geoff Lovegrove Retires',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'geoff-lovegrove-retires',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-15 14:46:34',
       'post_modified_gmt' => '2015-06-15 02:46:34',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=464',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    5 => 
    WP_Post::__set_state(array(
       'ID' => 467,
       'post_author' => '1',
       'post_date' => '2015-06-15 14:52:00',
       'post_date_gmt' => '2015-06-15 02:52:00',
       'post_content' => '',
       'post_title' => 'NZPF Conference 2014: A real southern experience',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'nzpf-conference-2014-a-real-southern-experience',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-15 14:52:00',
       'post_modified_gmt' => '2015-06-15 02:52:00',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=467',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    6 => 
    WP_Post::__set_state(array(
       'ID' => 468,
       'post_author' => '1',
       'post_date' => '2015-06-15 14:53:06',
       'post_date_gmt' => '2015-06-15 02:53:06',
       'post_content' => '',
       'post_title' => 'Taranaki\'s Toko School collaborates',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'taranakis-toko-school-collaborates',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-15 14:53:06',
       'post_modified_gmt' => '2015-06-15 02:53:06',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=468',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    7 => 
    WP_Post::__set_state(array(
       'ID' => 469,
       'post_author' => '1',
       'post_date' => '2015-06-15 15:02:23',
       'post_date_gmt' => '2015-06-15 03:02:23',
       'post_content' => '',
       'post_title' => 'Challenging a myth: Teachers do not have the greatest within-school impact on student achievement',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'challenging-a-myth-teachers-do-not-have-the-greatest-within-school-impact-on-student-achievement',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-15 15:02:23',
       'post_modified_gmt' => '2015-06-15 03:02:23',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=469',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    8 => 
    WP_Post::__set_state(array(
       'ID' => 471,
       'post_author' => '1',
       'post_date' => '2015-06-15 15:08:20',
       'post_date_gmt' => '2015-06-15 03:08:20',
       'post_content' => '',
       'post_title' => 'Seven values of highly effective principals',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'seven-values-of-highly-effective-principals',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-15 15:08:20',
       'post_modified_gmt' => '2015-06-15 03:08:20',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=471',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    9 => 
    WP_Post::__set_state(array(
       'ID' => 472,
       'post_author' => '1',
       'post_date' => '2015-06-15 15:11:21',
       'post_date_gmt' => '2015-06-15 03:11:21',
       'post_content' => '',
       'post_title' => 'School lines',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'school-lines-3',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-15 15:11:21',
       'post_modified_gmt' => '2015-06-15 03:11:21',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=472',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    10 => 
    WP_Post::__set_state(array(
       'ID' => 473,
       'post_author' => '1',
       'post_date' => '2015-06-15 15:14:00',
       'post_date_gmt' => '2015-06-15 03:14:00',
       'post_content' => '',
       'post_title' => 'ATA WHAKAAROHIA  - A story of mentoring in a special education setting',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'ata-whakaarohia-a-story-of-mentoring-in-a-special-education-setting',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-15 15:20:22',
       'post_modified_gmt' => '2015-06-15 03:20:22',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=473',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    11 => 
    WP_Post::__set_state(array(
       'ID' => 474,
       'post_author' => '1',
       'post_date' => '2015-06-15 15:32:47',
       'post_date_gmt' => '2015-06-15 03:32:47',
       'post_content' => '',
       'post_title' => 'Take a deep breath: Integrating into a new school culture',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'take-a-deep-breath-integrating-into-a-new-school-culture',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-15 15:57:24',
       'post_modified_gmt' => '2015-06-15 03:57:24',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=474',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
  '2014 Term 3 September Issue' => 
  array (
    0 => 
    WP_Post::__set_state(array(
       'ID' => 481,
       'post_author' => '1',
       'post_date' => '2015-06-16 09:46:45',
       'post_date_gmt' => '2015-06-15 21:46:45',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editorial-3',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 09:46:51',
       'post_modified_gmt' => '2015-06-15 21:46:51',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=481',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 => 
    WP_Post::__set_state(array(
       'ID' => 482,
       'post_author' => '1',
       'post_date' => '2015-06-16 09:48:05',
       'post_date_gmt' => '2015-06-15 21:48:05',
       'post_content' => '',
       'post_title' => 'President\'s Pen',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen-5',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 09:48:05',
       'post_modified_gmt' => '2015-06-15 21:48:05',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=482',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 => 
    WP_Post::__set_state(array(
       'ID' => 483,
       'post_author' => '1',
       'post_date' => '2015-06-16 09:56:33',
       'post_date_gmt' => '2015-06-15 21:56:33',
       'post_content' => '',
       'post_title' => 'On using cognitive enhancers to raise student achievement: An update',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'on-using-cognitive-enhancers-to-raise-student-achievement-an-update',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 09:56:36',
       'post_modified_gmt' => '2015-06-15 21:56:36',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=483',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 => 
    WP_Post::__set_state(array(
       'ID' => 495,
       'post_author' => '1',
       'post_date' => '2015-06-16 12:21:26',
       'post_date_gmt' => '2015-06-16 00:21:26',
       'post_content' => '',
       'post_title' => 'What matters in the future ?',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'what-matters-in-the-future',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 12:21:26',
       'post_modified_gmt' => '2015-06-16 00:21:26',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=495',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 => 
    WP_Post::__set_state(array(
       'ID' => 496,
       'post_author' => '1',
       'post_date' => '2015-06-16 12:23:19',
       'post_date_gmt' => '2015-06-16 00:23:19',
       'post_content' => '',
       'post_title' => 'NZPF Legal Support Scheme',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'nzpf-legal-support-scheme',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 12:23:36',
       'post_modified_gmt' => '2015-06-16 00:23:36',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=496',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    5 => 
    WP_Post::__set_state(array(
       'ID' => 497,
       'post_author' => '1',
       'post_date' => '2015-06-16 12:26:35',
       'post_date_gmt' => '2015-06-16 00:26:35',
       'post_content' => '',
       'post_title' => 'Enacting high expectations for all students',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'enacting-high-expectations-for-all-students',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 12:26:35',
       'post_modified_gmt' => '2015-06-16 00:26:35',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=497',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    6 => 
    WP_Post::__set_state(array(
       'ID' => 498,
       'post_author' => '1',
       'post_date' => '2015-06-16 12:27:39',
       'post_date_gmt' => '2015-06-16 00:27:39',
       'post_content' => '',
       'post_title' => 'Introducing creative commons',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'introducing-creative-commons',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 12:27:47',
       'post_modified_gmt' => '2015-06-16 00:27:47',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=498',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    7 => 
    WP_Post::__set_state(array(
       'ID' => 499,
       'post_author' => '1',
       'post_date' => '2015-06-16 12:28:46',
       'post_date_gmt' => '2015-06-16 00:28:46',
       'post_content' => '',
       'post_title' => 'High flying at Newton Central',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'high-flying-at-newton-central',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 12:28:51',
       'post_modified_gmt' => '2015-06-16 00:28:51',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=499',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    8 => 
    WP_Post::__set_state(array(
       'ID' => 500,
       'post_author' => '1',
       'post_date' => '2015-06-16 12:30:08',
       'post_date_gmt' => '2015-06-16 00:30:08',
       'post_content' => '',
       'post_title' => 'The eight continuums of school culture',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'the-eight-continuums-of-school-culture',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 12:30:13',
       'post_modified_gmt' => '2015-06-16 00:30:13',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=500',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    9 => 
    WP_Post::__set_state(array(
       'ID' => 501,
       'post_author' => '1',
       'post_date' => '2015-06-16 12:33:10',
       'post_date_gmt' => '2015-06-16 00:33:10',
       'post_content' => '',
       'post_title' => 'Outside looking in: IES, A research perspective',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'outside-looking-in-ies-a-research-perspective',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 12:33:16',
       'post_modified_gmt' => '2015-06-16 00:33:16',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=501',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    10 => 
    WP_Post::__set_state(array(
       'ID' => 502,
       'post_author' => '1',
       'post_date' => '2015-06-16 12:33:45',
       'post_date_gmt' => '2015-06-16 00:33:45',
       'post_content' => '',
       'post_title' => 'School lines',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'school-lines-4',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 12:33:51',
       'post_modified_gmt' => '2015-06-16 00:33:51',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=502',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    11 => 
    WP_Post::__set_state(array(
       'ID' => 503,
       'post_author' => '1',
       'post_date' => '2015-06-16 12:34:22',
       'post_date_gmt' => '2015-06-16 00:34:22',
       'post_content' => '',
       'post_title' => 'A better start in life',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'a-better-start-in-life',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 12:34:26',
       'post_modified_gmt' => '2015-06-16 00:34:26',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=503',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
  '2014 Term 4 November Issue' => 
  array (
    0 => 
    WP_Post::__set_state(array(
       'ID' => 387,
       'post_author' => '1',
       'post_date' => '2015-04-22 16:26:15',
       'post_date_gmt' => '2015-04-22 04:26:15',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editorial',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 16:26:15',
       'post_modified_gmt' => '2015-04-22 04:26:15',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=387',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 => 
    WP_Post::__set_state(array(
       'ID' => 388,
       'post_author' => '1',
       'post_date' => '2015-04-22 16:27:45',
       'post_date_gmt' => '2015-04-22 04:27:45',
       'post_content' => '',
       'post_title' => 'President\'s Pen',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen-2',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 16:27:45',
       'post_modified_gmt' => '2015-04-22 04:27:45',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=388',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 => 
    WP_Post::__set_state(array(
       'ID' => 389,
       'post_author' => '1',
       'post_date' => '2015-04-22 16:28:38',
       'post_date_gmt' => '2015-04-22 04:28:38',
       'post_content' => '',
       'post_title' => 'Six keys for Digital Leadership',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'six-keys-for-digital-leadership',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 16:28:38',
       'post_modified_gmt' => '2015-04-22 04:28:38',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=389',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 => 
    WP_Post::__set_state(array(
       'ID' => 390,
       'post_author' => '1',
       'post_date' => '2015-04-22 16:29:48',
       'post_date_gmt' => '2015-04-22 04:29:48',
       'post_content' => '',
       'post_title' => 'NZPF Conference 2014 - A Southland Extravaganza',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'nzpf-conference-2014-a-southland-extravaganza',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 16:29:48',
       'post_modified_gmt' => '2015-04-22 04:29:48',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=390',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 => 
    WP_Post::__set_state(array(
       'ID' => 391,
       'post_author' => '1',
       'post_date' => '2015-04-22 16:40:53',
       'post_date_gmt' => '2015-04-22 04:40:53',
       'post_content' => '',
       'post_title' => 'Awatapu College - Preparing Students for the Future',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'awatapu-college-preparing-students-for-the-future',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 16:40:53',
       'post_modified_gmt' => '2015-04-22 04:40:53',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=391',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    5 => 
    WP_Post::__set_state(array(
       'ID' => 392,
       'post_author' => '1',
       'post_date' => '2015-04-22 16:44:35',
       'post_date_gmt' => '2015-04-22 04:44:35',
       'post_content' => '',
       'post_title' => 'Religious Instruction in NZ State Primary Schools',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'religious-instruction-in-nz-state-primary-schools',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 16:44:35',
       'post_modified_gmt' => '2015-04-22 04:44:35',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=392',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    6 => 
    WP_Post::__set_state(array(
       'ID' => 393,
       'post_author' => '1',
       'post_date' => '2015-04-22 16:49:00',
       'post_date_gmt' => '2015-04-22 04:49:00',
       'post_content' => '',
       'post_title' => 'Neuroscience and Education - The importance of social class and family background',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'neuroscience-and-education-the-importance-of-social-class-and-family-background',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 16:49:00',
       'post_modified_gmt' => '2015-04-22 04:49:00',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=393',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    7 => 
    WP_Post::__set_state(array(
       'ID' => 394,
       'post_author' => '1',
       'post_date' => '2015-04-22 16:49:31',
       'post_date_gmt' => '2015-04-22 04:49:31',
       'post_content' => '',
       'post_title' => 'School Lines',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'school-lines',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 16:49:31',
       'post_modified_gmt' => '2015-04-22 04:49:31',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=394',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    8 => 
    WP_Post::__set_state(array(
       'ID' => 395,
       'post_author' => '1',
       'post_date' => '2015-04-22 16:49:58',
       'post_date_gmt' => '2015-04-22 04:49:58',
       'post_content' => '',
       'post_title' => 'Positive ID',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'positive-id',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 16:49:58',
       'post_modified_gmt' => '2015-04-22 04:49:58',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=395',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
  '2015 Term 1 March Issue' => 
  array (
    0 => 
    WP_Post::__set_state(array(
       'ID' => 372,
       'post_author' => '1',
       'post_date' => '2015-04-22 14:46:55',
       'post_date_gmt' => '2015-04-22 02:46:55',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editoral',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 09:18:39',
       'post_modified_gmt' => '2015-06-17 21:18:39',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=372',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 => 
    WP_Post::__set_state(array(
       'ID' => 374,
       'post_author' => '1',
       'post_date' => '2015-04-22 15:35:04',
       'post_date_gmt' => '2015-04-22 03:35:04',
       'post_content' => '',
       'post_title' => 'President\'s Pen',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 15:35:04',
       'post_modified_gmt' => '2015-04-22 03:35:04',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=374',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 => 
    WP_Post::__set_state(array(
       'ID' => 375,
       'post_author' => '1',
       'post_date' => '2015-04-22 15:43:49',
       'post_date_gmt' => '2015-04-22 03:43:49',
       'post_content' => '',
       'post_title' => 'Middle Leaders Development in Christchurch',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'middle-leaders-development-in-christchurch',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 15:43:49',
       'post_modified_gmt' => '2015-04-22 03:43:49',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=375',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 => 
    WP_Post::__set_state(array(
       'ID' => 376,
       'post_author' => '1',
       'post_date' => '2015-04-22 15:44:32',
       'post_date_gmt' => '2015-04-22 03:44:32',
       'post_content' => '',
       'post_title' => 'Digital Learning',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'digital-learning',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 15:44:32',
       'post_modified_gmt' => '2015-04-22 03:44:32',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=376',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 => 
    WP_Post::__set_state(array(
       'ID' => 377,
       'post_author' => '1',
       'post_date' => '2015-04-22 15:48:03',
       'post_date_gmt' => '2015-04-22 03:48:03',
       'post_content' => '',
       'post_title' => 'The Leadership Sweet Spot',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'the-leadership-sweet-spot',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 15:48:03',
       'post_modified_gmt' => '2015-04-22 03:48:03',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=377',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    5 => 
    WP_Post::__set_state(array(
       'ID' => 378,
       'post_author' => '1',
       'post_date' => '2015-04-22 15:48:49',
       'post_date_gmt' => '2015-04-22 03:48:49',
       'post_content' => '',
       'post_title' => 'Farewells to NZPF Executive Members',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'farewells-to-nzpf-executive-members',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 15:48:49',
       'post_modified_gmt' => '2015-04-22 03:48:49',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=378',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    6 => 
    WP_Post::__set_state(array(
       'ID' => 379,
       'post_author' => '1',
       'post_date' => '2015-04-22 15:50:05',
       'post_date_gmt' => '2015-04-22 03:50:05',
       'post_content' => '',
       'post_title' => 'Wakefield School Nelson',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'wakefield-school-nelson',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 15:50:05',
       'post_modified_gmt' => '2015-04-22 03:50:05',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=379',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    7 => 
    WP_Post::__set_state(array(
       'ID' => 380,
       'post_author' => '1',
       'post_date' => '2015-04-22 15:51:02',
       'post_date_gmt' => '2015-04-22 03:51:02',
       'post_content' => '',
       'post_title' => 'Phonics Programmes: What they can and cannot do',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'phonics-programmes-what-they-can-and-cannot-do',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 15:51:02',
       'post_modified_gmt' => '2015-04-22 03:51:02',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=380',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    8 => 
    WP_Post::__set_state(array(
       'ID' => 381,
       'post_author' => '1',
       'post_date' => '2015-04-22 15:53:38',
       'post_date_gmt' => '2015-04-22 03:53:38',
       'post_content' => '',
       'post_title' => 'Can Neuroscience and Education bridge the is-ought gap of theory and practice',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'can-neuroscience-and-education-bridge-the-is-ought-gap-of-theory-and-practice',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 16:42:44',
       'post_modified_gmt' => '2015-04-22 04:42:44',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=381',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    9 => 
    WP_Post::__set_state(array(
       'ID' => 382,
       'post_author' => '1',
       'post_date' => '2015-04-22 15:57:43',
       'post_date_gmt' => '2015-04-22 03:57:43',
       'post_content' => '',
       'post_title' => 'Positivism and Negativism - Tools of mind for leading educators',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'positivism-and-negativism-tools-of-mind-for-leading-educators',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 15:57:43',
       'post_modified_gmt' => '2015-04-22 03:57:43',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=382',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    10 => 
    WP_Post::__set_state(array(
       'ID' => 383,
       'post_author' => '1',
       'post_date' => '2015-04-22 15:58:35',
       'post_date_gmt' => '2015-04-22 03:58:35',
       'post_content' => '',
       'post_title' => 'Education for all',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'education-for-all',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 15:58:35',
       'post_modified_gmt' => '2015-04-22 03:58:35',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=383',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
  '2015 Term 2 June Issue' => 
  array (
    0 => 
    WP_Post::__set_state(array(
       'ID' => 441,
       'post_author' => '1',
       'post_date' => '2015-06-12 09:46:21',
       'post_date_gmt' => '2015-06-11 21:46:21',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editoral-2',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 09:18:14',
       'post_modified_gmt' => '2015-06-17 21:18:14',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=441',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 => 
    WP_Post::__set_state(array(
       'ID' => 444,
       'post_author' => '1',
       'post_date' => '2015-06-12 11:53:27',
       'post_date_gmt' => '2015-06-11 23:53:27',
       'post_content' => '',
       'post_title' => 'President\'s Pen',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen-3',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-12 11:53:31',
       'post_modified_gmt' => '2015-06-11 23:53:31',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=444',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 => 
    WP_Post::__set_state(array(
       'ID' => 445,
       'post_author' => '1',
       'post_date' => '2015-06-12 11:54:25',
       'post_date_gmt' => '2015-06-11 23:54:25',
       'post_content' => '',
       'post_title' => '6 Drivers of Stression',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => '6-drivers-of-stression',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-12 11:54:28',
       'post_modified_gmt' => '2015-06-11 23:54:28',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=445',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 => 
    WP_Post::__set_state(array(
       'ID' => 446,
       'post_author' => '1',
       'post_date' => '2015-06-12 11:56:23',
       'post_date_gmt' => '2015-06-11 23:56:23',
       'post_content' => '',
       'post_title' => 'NZPF Moot',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'nzpf-moot',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-12 11:58:49',
       'post_modified_gmt' => '2015-06-11 23:58:49',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=446',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 => 
    WP_Post::__set_state(array(
       'ID' => 447,
       'post_author' => '1',
       'post_date' => '2015-06-12 12:02:22',
       'post_date_gmt' => '2015-06-12 00:02:22',
       'post_content' => '',
       'post_title' => 'How to write grant applications',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'how-to-write-grant-applications',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-12 12:02:27',
       'post_modified_gmt' => '2015-06-12 00:02:27',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=447',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    5 => 
    WP_Post::__set_state(array(
       'ID' => 448,
       'post_author' => '1',
       'post_date' => '2015-06-12 12:04:08',
       'post_date_gmt' => '2015-06-12 00:04:08',
       'post_content' => '',
       'post_title' => 'Goal Pursuit in education using focused action research',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'goal-pursuit-in-education-using-focused-action-research',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-12 12:04:16',
       'post_modified_gmt' => '2015-06-12 00:04:16',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=448',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    6 => 
    WP_Post::__set_state(array(
       'ID' => 449,
       'post_author' => '1',
       'post_date' => '2015-06-12 12:05:55',
       'post_date_gmt' => '2015-06-12 00:05:55',
       'post_content' => '',
       'post_title' => 'Schooled for success - Halfmoon Bay School, Stewart Island',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'schooled-for-success-halfmoon-bay-school-stewart-island',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-12 12:05:58',
       'post_modified_gmt' => '2015-06-12 00:05:58',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=449',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    7 => 
    WP_Post::__set_state(array(
       'ID' => 450,
       'post_author' => '1',
       'post_date' => '2015-06-12 12:06:57',
       'post_date_gmt' => '2015-06-12 00:06:57',
       'post_content' => '',
       'post_title' => 'School Lines',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'school-lines-2',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-12 12:06:59',
       'post_modified_gmt' => '2015-06-12 00:06:59',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=450',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    8 => 
    WP_Post::__set_state(array(
       'ID' => 451,
       'post_author' => '1',
       'post_date' => '2015-06-12 12:08:58',
       'post_date_gmt' => '2015-06-12 00:08:58',
       'post_content' => '',
       'post_title' => 'Growing Others',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'growing-others',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-12 12:09:47',
       'post_modified_gmt' => '2015-06-12 00:09:47',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=451',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
)

Open in new window


ascending example using var_export:

array (
  '2014 Term 3 September Issue' => 
  array (
    0 => 
    WP_Post::__set_state(array(
       'ID' => 503,
       'post_author' => '1',
       'post_date' => '2015-06-16 12:34:22',
       'post_date_gmt' => '2015-06-16 00:34:22',
       'post_content' => '',
       'post_title' => 'A better start in life',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'a-better-start-in-life',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 12:34:26',
       'post_modified_gmt' => '2015-06-16 00:34:26',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=503',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 => 
    WP_Post::__set_state(array(
       'ID' => 502,
       'post_author' => '1',
       'post_date' => '2015-06-16 12:33:45',
       'post_date_gmt' => '2015-06-16 00:33:45',
       'post_content' => '',
       'post_title' => 'School lines',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'school-lines-4',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 12:33:51',
       'post_modified_gmt' => '2015-06-16 00:33:51',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=502',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 => 
    WP_Post::__set_state(array(
       'ID' => 501,
       'post_author' => '1',
       'post_date' => '2015-06-16 12:33:10',
       'post_date_gmt' => '2015-06-16 00:33:10',
       'post_content' => '',
       'post_title' => 'Outside looking in: IES, A research perspective',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'outside-looking-in-ies-a-research-perspective',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 12:33:16',
       'post_modified_gmt' => '2015-06-16 00:33:16',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=501',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
  '2014 Term 1 March Issue' => 
  array (
    0 => 
    WP_Post::__set_state(array(
       'ID' => 548,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:02:09',
       'post_date_gmt' => '2015-06-17 22:02:09',
       'post_content' => '',
       'post_title' => 'What\'s on Top? - The wonders of modern technology...',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'whats-on-top-the-wonders-of-modern-technology',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:02:16',
       'post_modified_gmt' => '2015-06-17 22:02:16',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=548',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 => 
    WP_Post::__set_state(array(
       'ID' => 546,
       'post_author' => '1',
       'post_date' => '2015-06-18 09:57:44',
       'post_date_gmt' => '2015-06-17 21:57:44',
       'post_content' => '',
       'post_title' => 'School Lines - Sceptical, Cynical, Critically Analytical, or Naive?',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'school-lines-sceptical-cynical-critically-analytical-or-naive',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 09:57:48',
       'post_modified_gmt' => '2015-06-17 21:57:48',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=546',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 => 
    WP_Post::__set_state(array(
       'ID' => 544,
       'post_author' => '1',
       'post_date' => '2015-06-18 09:55:35',
       'post_date_gmt' => '2015-06-17 21:55:35',
       'post_content' => '',
       'post_title' => 'A Principle to Govern Education Policy - Abolishing National Standards',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'a-principle-to-govern-education-policy-abolishing-national-standards',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 09:55:40',
       'post_modified_gmt' => '2015-06-17 21:55:40',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=544',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 => 
    WP_Post::__set_state(array(
       'ID' => 543,
       'post_author' => '1',
       'post_date' => '2015-06-18 09:51:09',
       'post_date_gmt' => '2015-06-17 21:51:09',
       'post_content' => '',
       'post_title' => 'Moving on up in Manurewa - The story of Manurewa Intermediate School',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'moving-on-up-in-manurewa-the-story-of-manurewa-intermediate-school',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 09:51:17',
       'post_modified_gmt' => '2015-06-17 21:51:17',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=543',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 => 
    WP_Post::__set_state(array(
       'ID' => 542,
       'post_author' => '1',
       'post_date' => '2015-06-18 09:42:11',
       'post_date_gmt' => '2015-06-17 21:42:11',
       'post_content' => '',
       'post_title' => 'Does NZ have a long tail of underachievement? - Getting to the truth of the matter',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'does-nz-have-a-long-tail-of-underachievement-getting-to-the-truth-of-the-matter',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 09:42:19',
       'post_modified_gmt' => '2015-06-17 21:42:19',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=542',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    5 => 
    WP_Post::__set_state(array(
       'ID' => 541,
       'post_author' => '1',
       'post_date' => '2015-06-18 09:31:37',
       'post_date_gmt' => '2015-06-17 21:31:37',
       'post_content' => '',
       'post_title' => 'Educational inequalities will not be reduced using business process models',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'educational-inequalities-will-not-be-reduced-using-business-process-models',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 09:35:43',
       'post_modified_gmt' => '2015-06-17 21:35:43',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=541',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    6 => 
    WP_Post::__set_state(array(
       'ID' => 540,
       'post_author' => '1',
       'post_date' => '2015-06-17 16:27:41',
       'post_date_gmt' => '2015-06-17 04:27:41',
       'post_content' => '',
       'post_title' => 'More bad news for national standards',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'more-bad-news-for-national-standards',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 16:27:45',
       'post_modified_gmt' => '2015-06-17 04:27:45',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=540',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    7 => 
    WP_Post::__set_state(array(
       'ID' => 539,
       'post_author' => '1',
       'post_date' => '2015-06-17 16:26:31',
       'post_date_gmt' => '2015-06-17 04:26:31',
       'post_content' => '',
       'post_title' => 'NZPF Executive Members retire',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'nzpf-executive-members-retire',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 16:26:33',
       'post_modified_gmt' => '2015-06-17 04:26:33',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=539',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    8 => 
    WP_Post::__set_state(array(
       'ID' => 538,
       'post_author' => '1',
       'post_date' => '2015-06-17 16:25:36',
       'post_date_gmt' => '2015-06-17 04:25:36',
       'post_content' => '',
       'post_title' => 'President\'s Pen',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen-7',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 16:25:40',
       'post_modified_gmt' => '2015-06-17 04:25:40',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=538',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    9 => 
    WP_Post::__set_state(array(
       'ID' => 537,
       'post_author' => '1',
       'post_date' => '2015-06-17 16:24:31',
       'post_date_gmt' => '2015-06-17 04:24:31',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editorial-4',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 16:24:33',
       'post_modified_gmt' => '2015-06-17 04:24:33',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=537',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
  '2013 Term 4 November Issue' => 
  array (
    0 => 
    WP_Post::__set_state(array(
       'ID' => 563,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:24:20',
       'post_date_gmt' => '2015-06-17 22:24:20',
       'post_content' => '',
       'post_title' => 'What\'s on Top - Tragedy as a source of strength...',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'whats-on-top-tragedy-as-a-source-of-strength',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:24:22',
       'post_modified_gmt' => '2015-06-17 22:24:22',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=563',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 => 
    WP_Post::__set_state(array(
       'ID' => 562,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:23:18',
       'post_date_gmt' => '2015-06-17 22:23:18',
       'post_content' => '',
       'post_title' => 'School Lines - children are children, and statistics are numbers',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'school-lines-children-are-children-and-statistics-are-numbers',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:23:25',
       'post_modified_gmt' => '2015-06-17 22:23:25',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=562',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 => 
    WP_Post::__set_state(array(
       'ID' => 561,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:20:57',
       'post_date_gmt' => '2015-06-17 22:20:57',
       'post_content' => '',
       'post_title' => 'Revitalising the Role of Public Education - an alternative to the growing privatisation of education',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'revitalising-the-role-of-public-education-an-alternative-to-the-growing-privatisation-of-education',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:21:01',
       'post_modified_gmt' => '2015-06-17 22:21:01',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=561',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 => 
    WP_Post::__set_state(array(
       'ID' => 560,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:18:33',
       'post_date_gmt' => '2015-06-17 22:18:33',
       'post_content' => '',
       'post_title' => 'Hidden Politics of Tomorrow\'s Schools',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'hidden-politics-of-tomorrows-schools',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:18:36',
       'post_modified_gmt' => '2015-06-17 22:18:36',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=560',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 => 
    WP_Post::__set_state(array(
       'ID' => 559,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:16:02',
       'post_date_gmt' => '2015-06-17 22:16:02',
       'post_content' => '',
       'post_title' => 'The Manufacture of Education Myths and Mantras - some reflections on the Christchurch school renewal project',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'the-manufacture-of-education-myths-and-mantras-some-reflections-on-the-christchurch-school-renewal-project',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:17:33',
       'post_modified_gmt' => '2015-06-17 22:17:33',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=559',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    5 => 
    WP_Post::__set_state(array(
       'ID' => 558,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:13:15',
       'post_date_gmt' => '2015-06-17 22:13:15',
       'post_content' => '',
       'post_title' => 'Highlights at Hillsborough',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'highlights-at-hillsborough',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:13:20',
       'post_modified_gmt' => '2015-06-17 22:13:20',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=558',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    6 => 
    WP_Post::__set_state(array(
       'ID' => 557,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:12:08',
       'post_date_gmt' => '2015-06-17 22:12:08',
       'post_content' => '',
       'post_title' => 'Managing the return to school following \'Stand Down\'',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'managing-the-return-to-school-following-stand-down',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:12:11',
       'post_modified_gmt' => '2015-06-17 22:12:11',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=557',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    7 => 
    WP_Post::__set_state(array(
       'ID' => 556,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:08:40',
       'post_date_gmt' => '2015-06-17 22:08:40',
       'post_content' => '',
       'post_title' => 'Reading Recovery and Beyond',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'reading-recovery-beyond',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:10:11',
       'post_modified_gmt' => '2015-06-17 22:10:11',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=556',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    8 => 
    WP_Post::__set_state(array(
       'ID' => 555,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:06:52',
       'post_date_gmt' => '2015-06-17 22:06:52',
       'post_content' => '',
       'post_title' => 'The National Aspiring Principals\' Programme',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'the-national-aspiring-principals-programme',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:06:56',
       'post_modified_gmt' => '2015-06-17 22:06:56',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=555',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    9 => 
    WP_Post::__set_state(array(
       'ID' => 554,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:05:38',
       'post_date_gmt' => '2015-06-17 22:05:38',
       'post_content' => '',
       'post_title' => 'President\'s Pen',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen-8',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:05:41',
       'post_modified_gmt' => '2015-06-17 22:05:41',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=554',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    10 => 
    WP_Post::__set_state(array(
       'ID' => 551,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:04:16',
       'post_date_gmt' => '2015-06-17 22:04:16',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editorial-5',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:04:20',
       'post_modified_gmt' => '2015-06-17 22:04:20',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=551',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
  '2013 Term 3 September Issue' => 
  array (
    0 => 
    WP_Post::__set_state(array(
       'ID' => 536,
       'post_author' => '1',
       'post_date' => '2015-06-17 15:52:49',
       'post_date_gmt' => '2015-06-17 03:52:49',
       'post_content' => '',
       'post_title' => 'What\'s on top - Then there were none',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'whats-on-top-then-there-were-none',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 15:52:51',
       'post_modified_gmt' => '2015-06-17 03:52:51',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=536',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 => 
    WP_Post::__set_state(array(
       'ID' => 535,
       'post_author' => '1',
       'post_date' => '2015-06-17 15:52:06',
       'post_date_gmt' => '2015-06-17 03:52:06',
       'post_content' => '',
       'post_title' => 'School lines',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'school-lines-5',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 15:52:06',
       'post_modified_gmt' => '2015-06-17 03:52:06',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=535',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 => 
    WP_Post::__set_state(array(
       'ID' => 534,
       'post_author' => '1',
       'post_date' => '2015-06-17 15:50:51',
       'post_date_gmt' => '2015-06-17 03:50:51',
       'post_content' => '',
       'post_title' => 'Should we use cognitive enhancers?',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'should-we-use-cognitive-enhancers',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 15:50:51',
       'post_modified_gmt' => '2015-06-17 03:50:51',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=534',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 => 
    WP_Post::__set_state(array(
       'ID' => 533,
       'post_author' => '1',
       'post_date' => '2015-06-17 15:50:05',
       'post_date_gmt' => '2015-06-17 03:50:05',
       'post_content' => '',
       'post_title' => 'Cow bells call principals to conference - Power to innovate - NZPF National Conference',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'cow-bells-call-principals-to-conference-power-to-innovate-nzpf-national-conference',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 15:50:05',
       'post_modified_gmt' => '2015-06-17 03:50:05',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=533',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 => 
    WP_Post::__set_state(array(
       'ID' => 532,
       'post_author' => '1',
       'post_date' => '2015-06-17 15:47:52',
       'post_date_gmt' => '2015-06-17 03:47:52',
       'post_content' => '',
       'post_title' => 'Principals\' Advise - Helping Principals achieve a successful outcome',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'principals-advise-helping-principals-achieve-a-successful-outcome',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 15:47:52',
       'post_modified_gmt' => '2015-06-17 03:47:52',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=532',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    5 => 
    WP_Post::__set_state(array(
       'ID' => 531,
       'post_author' => '1',
       'post_date' => '2015-06-17 15:39:17',
       'post_date_gmt' => '2015-06-17 03:39:17',
       'post_content' => '',
       'post_title' => '\'Willowbank School\' In thirty languages',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'willowbank-school-in-thirty-languages',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 15:39:20',
       'post_modified_gmt' => '2015-06-17 03:39:20',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=531',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    6 => 
    WP_Post::__set_state(array(
       'ID' => 519,
       'post_author' => '1',
       'post_date' => '2015-06-16 22:25:59',
       'post_date_gmt' => '2015-06-16 10:25:59',
       'post_content' => '',
       'post_title' => 'Matauranga Maori an NZPF initiative',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'matauranga-maori-an-nzpf-initiative',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 22:26:21',
       'post_modified_gmt' => '2015-06-16 10:26:21',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=519',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    7 => 
    WP_Post::__set_state(array(
       'ID' => 518,
       'post_author' => '1',
       'post_date' => '2015-06-16 22:23:25',
       'post_date_gmt' => '2015-06-16 10:23:25',
       'post_content' => '',
       'post_title' => 'President\'s Pen',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen-6',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 22:23:29',
       'post_modified_gmt' => '2015-06-16 10:23:29',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=518',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    8 => 
    WP_Post::__set_state(array(
       'ID' => 517,
       'post_author' => '1',
       'post_date' => '2015-06-16 22:22:15',
       'post_date_gmt' => '2015-06-16 10:22:15',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editoral-3',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 09:17:21',
       'post_modified_gmt' => '2015-06-17 21:17:21',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=517',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
  '2013 Term 2 June Issue' => 
  array (
    0 => 
    WP_Post::__set_state(array(
       'ID' => 584,
       'post_author' => '1',
       'post_date' => '2015-06-18 11:05:14',
       'post_date_gmt' => '2015-06-17 23:05:14',
       'post_content' => '',
       'post_title' => 'What\'s on Top - Choices...',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'whats-on-top-choices',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 11:05:19',
       'post_modified_gmt' => '2015-06-17 23:05:19',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=584',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 => 
    WP_Post::__set_state(array(
       'ID' => 583,
       'post_author' => '1',
       'post_date' => '2015-06-18 11:04:21',
       'post_date_gmt' => '2015-06-17 23:04:21',
       'post_content' => '',
       'post_title' => 'School Lines',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'school-lines-7',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 11:04:25',
       'post_modified_gmt' => '2015-06-17 23:04:25',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=583',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 => 
    WP_Post::__set_state(array(
       'ID' => 582,
       'post_author' => '1',
       'post_date' => '2015-06-18 11:03:47',
       'post_date_gmt' => '2015-06-17 23:03:47',
       'post_content' => '',
       'post_title' => 'Stand Children\'s Services Tu Maia Whanau',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'stand-childrens-services-tu-maia-whanau',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 11:15:57',
       'post_modified_gmt' => '2015-06-17 23:15:57',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=582',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 => 
    WP_Post::__set_state(array(
       'ID' => 581,
       'post_author' => '1',
       'post_date' => '2015-06-18 11:01:32',
       'post_date_gmt' => '2015-06-17 23:01:32',
       'post_content' => '',
       'post_title' => 'Vital Connection: Why we need more than Self-Managing Schools',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'vital-connection-why-we-need-more-than-self-managing-schools',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 11:02:23',
       'post_modified_gmt' => '2015-06-17 23:02:23',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=581',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 => 
    WP_Post::__set_state(array(
       'ID' => 579,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:58:00',
       'post_date_gmt' => '2015-06-17 22:58:00',
       'post_content' => '',
       'post_title' => 'Learning Remarkably',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'learning-remarkably',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:58:00',
       'post_modified_gmt' => '2015-06-17 22:58:00',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=579',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    5 => 
    WP_Post::__set_state(array(
       'ID' => 578,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:56:54',
       'post_date_gmt' => '2015-06-17 22:56:54',
       'post_content' => '',
       'post_title' => 'NZCER - Explaining Star Assessment Changes',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'nzcer-explaining-star-assessment-changes',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 11:13:23',
       'post_modified_gmt' => '2015-06-17 23:13:23',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=578',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    6 => 
    WP_Post::__set_state(array(
       'ID' => 577,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:55:35',
       'post_date_gmt' => '2015-06-17 22:55:35',
       'post_content' => '',
       'post_title' => 'NZPF Moot 2013',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'nzpf-moot-2013',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 11:14:07',
       'post_modified_gmt' => '2015-06-17 23:14:07',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=577',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    7 => 
    WP_Post::__set_state(array(
       'ID' => 576,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:54:23',
       'post_date_gmt' => '2015-06-17 22:54:23',
       'post_content' => '',
       'post_title' => 'President\'s Pen',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen-10',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:54:54',
       'post_modified_gmt' => '2015-06-17 22:54:54',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=576',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    8 => 
    WP_Post::__set_state(array(
       'ID' => 575,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:53:13',
       'post_date_gmt' => '2015-06-17 22:53:13',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editorial-7',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:53:16',
       'post_modified_gmt' => '2015-06-17 22:53:16',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=575',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
  '2013 Term 1 March Issue' => 
  array (
    0 => 
    WP_Post::__set_state(array(
       'ID' => 580,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:59:40',
       'post_date_gmt' => '2015-06-17 22:59:40',
       'post_content' => '',
       'post_title' => 'Powerful Reflection Activities that Empower Teachers to Change',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'powerful-reflection-activities-that-empower-teachers-to-change',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:59:43',
       'post_modified_gmt' => '2015-06-17 22:59:43',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=580',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 => 
    WP_Post::__set_state(array(
       'ID' => 574,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:51:47',
       'post_date_gmt' => '2015-06-17 22:51:47',
       'post_content' => '',
       'post_title' => 'Rural Ramblings',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'rural-ramblings',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:51:50',
       'post_modified_gmt' => '2015-06-17 22:51:50',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=574',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 => 
    WP_Post::__set_state(array(
       'ID' => 573,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:50:19',
       'post_date_gmt' => '2015-06-17 22:50:19',
       'post_content' => '',
       'post_title' => 'School Lines',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'school-lines-6',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:50:22',
       'post_modified_gmt' => '2015-06-17 22:50:22',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=573',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 => 
    WP_Post::__set_state(array(
       'ID' => 572,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:49:42',
       'post_date_gmt' => '2015-06-17 22:49:42',
       'post_content' => '',
       'post_title' => 'Teaching Students Financial Skills for Life',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'teaching-students-financial-skills-for-life',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:49:45',
       'post_modified_gmt' => '2015-06-17 22:49:45',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=572',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 => 
    WP_Post::__set_state(array(
       'ID' => 571,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:48:17',
       'post_date_gmt' => '2015-06-17 22:48:17',
       'post_content' => '',
       'post_title' => 'Five Keys to Building and Maintaining Sustainable School Momentum',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'five-keys-to-building-and-maintaining-sustainable-school-momentum',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:48:20',
       'post_modified_gmt' => '2015-06-17 22:48:20',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=571',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    5 => 
    WP_Post::__set_state(array(
       'ID' => 570,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:47:05',
       'post_date_gmt' => '2015-06-17 22:47:05',
       'post_content' => '',
       'post_title' => 'NZPF Conference - Claudlands Events\' Centre, Hamilton, 9-12 July',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'nzpf-conference-claudlands-events-centre-hamilton-9-12-july',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 11:14:32',
       'post_modified_gmt' => '2015-06-17 23:14:32',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=570',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    6 => 
    WP_Post::__set_state(array(
       'ID' => 569,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:45:27',
       'post_date_gmt' => '2015-06-17 22:45:27',
       'post_content' => '',
       'post_title' => 'The Rich Kids',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'the-rich-kids',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:45:31',
       'post_modified_gmt' => '2015-06-17 22:45:31',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=569',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    7 => 
    WP_Post::__set_state(array(
       'ID' => 568,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:43:22',
       'post_date_gmt' => '2015-06-17 22:43:22',
       'post_content' => '',
       'post_title' => 'NZPF Honours Outstanding Contributions',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'nzpf-honours-outstanding-contributions',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 11:14:50',
       'post_modified_gmt' => '2015-06-17 23:14:50',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=568',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    8 => 
    WP_Post::__set_state(array(
       'ID' => 567,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:36:58',
       'post_date_gmt' => '2015-06-17 22:36:58',
       'post_content' => '',
       'post_title' => 'Obituary',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'obituary',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:37:07',
       'post_modified_gmt' => '2015-06-17 22:37:07',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=567',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    9 => 
    WP_Post::__set_state(array(
       'ID' => 566,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:36:06',
       'post_date_gmt' => '2015-06-17 22:36:06',
       'post_content' => '',
       'post_title' => 'Children Massaging Children: Hauora',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'children-massaging-children-hauora',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:36:10',
       'post_modified_gmt' => '2015-06-17 22:36:10',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=566',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    10 => 
    WP_Post::__set_state(array(
       'ID' => 565,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:34:18',
       'post_date_gmt' => '2015-06-17 22:34:18',
       'post_content' => '',
       'post_title' => 'President\'s Pen',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen-9',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:34:20',
       'post_modified_gmt' => '2015-06-17 22:34:20',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=565',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    11 => 
    WP_Post::__set_state(array(
       'ID' => 564,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:33:10',
       'post_date_gmt' => '2015-06-17 22:33:10',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editorial-6',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:33:13',
       'post_modified_gmt' => '2015-06-17 22:33:13',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=564',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
  '2012 Term 4 November Issue' => 
  array (
    0 => 
    WP_Post::__set_state(array(
       'ID' => 617,
       'post_author' => '1',
       'post_date' => '2015-06-29 15:12:28',
       'post_date_gmt' => '2015-06-29 03:12:28',
       'post_content' => '',
       'post_title' => 'Rural Ramblings',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'rural-ramblings-2',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 15:12:38',
       'post_modified_gmt' => '2015-06-29 03:12:38',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=617',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 => 
    WP_Post::__set_state(array(
       'ID' => 616,
       'post_author' => '1',
       'post_date' => '2015-06-29 15:11:17',
       'post_date_gmt' => '2015-06-29 03:11:17',
       'post_content' => '',
       'post_title' => 'School Lines',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'school-lines-8',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 15:11:25',
       'post_modified_gmt' => '2015-06-29 03:11:25',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=616',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 => 
    WP_Post::__set_state(array(
       'ID' => 615,
       'post_author' => '1',
       'post_date' => '2015-06-29 15:10:33',
       'post_date_gmt' => '2015-06-29 03:10:33',
       'post_content' => '',
       'post_title' => 'Burning the myth about arson',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'burning-the-myth-about-arson',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 15:10:36',
       'post_modified_gmt' => '2015-06-29 03:10:36',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=615',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 => 
    WP_Post::__set_state(array(
       'ID' => 614,
       'post_author' => '1',
       'post_date' => '2015-06-29 15:09:30',
       'post_date_gmt' => '2015-06-29 03:09:30',
       'post_content' => '',
       'post_title' => 'Appraisal through Te Ariki lens',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'appraisal-through-te-ariki-lens',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 15:09:37',
       'post_modified_gmt' => '2015-06-29 03:09:37',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=614',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 => 
    WP_Post::__set_state(array(
       'ID' => 613,
       'post_author' => '1',
       'post_date' => '2015-06-29 15:07:53',
       'post_date_gmt' => '2015-06-29 03:07:53',
       'post_content' => '',
       'post_title' => 'State of the nations reports',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'state-of-the-nations-reports',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 15:08:35',
       'post_modified_gmt' => '2015-06-29 03:08:35',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=613',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    5 => 
    WP_Post::__set_state(array(
       'ID' => 612,
       'post_author' => '1',
       'post_date' => '2015-06-29 15:06:28',
       'post_date_gmt' => '2015-06-29 03:06:28',
       'post_content' => '',
       'post_title' => 'Eradicating GERMs: The lead message from the Trans-Tasman Conference',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'eradicating-germs-the-lead-message-from-the-trans-tasman-conference',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 15:06:36',
       'post_modified_gmt' => '2015-06-29 03:06:36',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=612',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    6 => 
    WP_Post::__set_state(array(
       'ID' => 611,
       'post_author' => '1',
       'post_date' => '2015-06-29 15:04:31',
       'post_date_gmt' => '2015-06-29 03:04:31',
       'post_content' => '',
       'post_title' => 'Public interest threatened by private gain',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'public-interest-threatened-by-private-gain',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 15:04:31',
       'post_modified_gmt' => '2015-06-29 03:04:31',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=611',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    7 => 
    WP_Post::__set_state(array(
       'ID' => 610,
       'post_author' => '1',
       'post_date' => '2015-06-29 14:58:14',
       'post_date_gmt' => '2015-06-29 02:58:14',
       'post_content' => '',
       'post_title' => 'Maori achievement in a mainstream school',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'maori-achievement-in-a-mainstream-school',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 14:58:14',
       'post_modified_gmt' => '2015-06-29 02:58:14',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=610',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    8 => 
    WP_Post::__set_state(array(
       'ID' => 609,
       'post_author' => '1',
       'post_date' => '2015-06-29 14:56:39',
       'post_date_gmt' => '2015-06-29 02:56:39',
       'post_content' => '',
       'post_title' => 'NZPF Election Results',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'nzpf-election-results',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 14:56:39',
       'post_modified_gmt' => '2015-06-29 02:56:39',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=609',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    9 => 
    WP_Post::__set_state(array(
       'ID' => 607,
       'post_author' => '1',
       'post_date' => '2015-06-29 14:55:42',
       'post_date_gmt' => '2015-06-29 02:55:42',
       'post_content' => '',
       'post_title' => 'President\'s Pen',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen-11',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 14:55:46',
       'post_modified_gmt' => '2015-06-29 02:55:46',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=607',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    10 => 
    WP_Post::__set_state(array(
       'ID' => 606,
       'post_author' => '1',
       'post_date' => '2015-06-29 14:54:53',
       'post_date_gmt' => '2015-06-29 02:54:53',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editorial-8',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 14:54:53',
       'post_modified_gmt' => '2015-06-29 02:54:53',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=606',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
  '2012 Term 3 September Issue' => 
  array (
    0 => 
    WP_Post::__set_state(array(
       'ID' => 628,
       'post_author' => '1',
       'post_date' => '2015-06-29 15:37:58',
       'post_date_gmt' => '2015-06-29 03:37:58',
       'post_content' => '',
       'post_title' => 'Rural Ramblings',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'rural-ramblings-3',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 15:38:13',
       'post_modified_gmt' => '2015-06-29 03:38:13',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=628',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 => 
    WP_Post::__set_state(array(
       'ID' => 627,
       'post_author' => '1',
       'post_date' => '2015-06-29 15:35:15',
       'post_date_gmt' => '2015-06-29 03:35:15',
       'post_content' => '',
       'post_title' => 'School Lines',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'school-lines-9',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 15:35:23',
       'post_modified_gmt' => '2015-06-29 03:35:23',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=627',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 => 
    WP_Post::__set_state(array(
       'ID' => 626,
       'post_author' => '1',
       'post_date' => '2015-06-29 15:34:45',
       'post_date_gmt' => '2015-06-29 03:34:45',
       'post_content' => '',
       'post_title' => 'Homophobic bullying, suicide and the primary school',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'homophobic-bullying-suicide-and-the-primary-school',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 15:34:53',
       'post_modified_gmt' => '2015-06-29 03:34:53',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=626',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 => 
    WP_Post::__set_state(array(
       'ID' => 625,
       'post_author' => '1',
       'post_date' => '2015-06-29 15:31:28',
       'post_date_gmt' => '2015-06-29 03:31:28',
       'post_content' => '',
       'post_title' => 'Raglan area school - TE KURA A ROHE O WHAINGAROA - Celebrating rural education in a bi-cultural environment',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'raglan-area-school-te-kura-a-rohe-o-whaingaroa-celebrating-rural-education-in-a-bi-cultural-environment',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 15:32:52',
       'post_modified_gmt' => '2015-06-29 03:32:52',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=625',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 => 
    WP_Post::__set_state(array(
       'ID' => 624,
       'post_author' => '1',
       'post_date' => '2015-06-29 15:26:28',
       'post_date_gmt' => '2015-06-29 03:26:28',
       'post_content' => '',
       'post_title' => 'Schooling by rural delivery - Te Kowhai School at the heart of Waikato\'s Dairy District',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'schooling-by-rural-delivery-te-kowhai-school-at-the-heart-of-waikatos-dairy-district',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 15:26:30',
       'post_modified_gmt' => '2015-06-29 03:26:30',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=624',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    5 => 
    WP_Post::__set_state(array(
       'ID' => 623,
       'post_author' => '1',
       'post_date' => '2015-06-29 15:20:50',
       'post_date_gmt' => '2015-06-29 03:20:50',
       'post_content' => '',
       'post_title' => 'Rural Education Reference Group (RERG)',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'rural-education-reference-group-rerg',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 15:23:05',
       'post_modified_gmt' => '2015-06-29 03:23:05',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=623',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    6 => 
    WP_Post::__set_state(array(
       'ID' => 622,
       'post_author' => '1',
       'post_date' => '2015-06-29 15:19:24',
       'post_date_gmt' => '2015-06-29 03:19:24',
       'post_content' => '',
       'post_title' => 'Christchurch Bays Cluster Collaboration Model',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'christchurch-bays-cluster-collaboration-model',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 15:19:29',
       'post_modified_gmt' => '2015-06-29 03:19:29',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=622',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    7 => 
    WP_Post::__set_state(array(
       'ID' => 621,
       'post_author' => '1',
       'post_date' => '2015-06-29 15:17:54',
       'post_date_gmt' => '2015-06-29 03:17:54',
       'post_content' => '',
       'post_title' => 'Learning Culture at Te Aute College',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'learning-culture-at-te-aute-college',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 15:17:59',
       'post_modified_gmt' => '2015-06-29 03:17:59',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=621',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    8 => 
    WP_Post::__set_state(array(
       'ID' => 620,
       'post_author' => '1',
       'post_date' => '2015-06-29 15:16:19',
       'post_date_gmt' => '2015-06-29 03:16:19',
       'post_content' => '',
       'post_title' => 'Metro\'s School Rankings',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'metros-school-rankings',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 15:16:23',
       'post_modified_gmt' => '2015-06-29 03:16:23',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=620',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    9 => 
    WP_Post::__set_state(array(
       'ID' => 619,
       'post_author' => '1',
       'post_date' => '2015-06-29 15:15:10',
       'post_date_gmt' => '2015-06-29 03:15:10',
       'post_content' => '',
       'post_title' => 'President\'s Pen - Ethics before economics',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen-ethics-before-economics',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 15:15:25',
       'post_modified_gmt' => '2015-06-29 03:15:25',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=619',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    10 => 
    WP_Post::__set_state(array(
       'ID' => 618,
       'post_author' => '1',
       'post_date' => '2015-06-29 15:13:38',
       'post_date_gmt' => '2015-06-29 03:13:38',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editorial-9',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 15:13:49',
       'post_modified_gmt' => '2015-06-29 03:13:49',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=618',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
  '2012 Term 2 June Issue' => 
  array (
    0 => 
    WP_Post::__set_state(array(
       'ID' => 639,
       'post_author' => '1',
       'post_date' => '2015-06-29 16:34:34',
       'post_date_gmt' => '2015-06-29 04:34:34',
       'post_content' => '',
       'post_title' => 'Rural Ramblings',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'rural-ramblings-4',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 16:34:47',
       'post_modified_gmt' => '2015-06-29 04:34:47',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=639',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 => 
    WP_Post::__set_state(array(
       'ID' => 638,
       'post_author' => '1',
       'post_date' => '2015-06-29 16:32:30',
       'post_date_gmt' => '2015-06-29 04:32:30',
       'post_content' => '',
       'post_title' => 'School Lines',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'school-lines-10',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 16:32:51',
       'post_modified_gmt' => '2015-06-29 04:32:51',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=638',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 => 
    WP_Post::__set_state(array(
       'ID' => 637,
       'post_author' => '1',
       'post_date' => '2015-06-29 16:31:54',
       'post_date_gmt' => '2015-06-29 04:31:54',
       'post_content' => '',
       'post_title' => 'Solutions to inequality in school achievement',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'solutions-to-inequality-in-school-achievement',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 16:32:05',
       'post_modified_gmt' => '2015-06-29 04:32:05',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=637',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 => 
    WP_Post::__set_state(array(
       'ID' => 636,
       'post_author' => '1',
       'post_date' => '2015-06-29 16:28:12',
       'post_date_gmt' => '2015-06-29 04:28:12',
       'post_content' => '',
       'post_title' => 'Going beyond the school gates for our gifted kids',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'going-beyond-the-school-gates-for-our-gifted-kids',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 16:29:59',
       'post_modified_gmt' => '2015-06-29 04:29:59',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=636',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 => 
    WP_Post::__set_state(array(
       'ID' => 635,
       'post_author' => '1',
       'post_date' => '2015-06-29 16:27:07',
       'post_date_gmt' => '2015-06-29 04:27:07',
       'post_content' => '',
       'post_title' => 'Principal(ly) yours: State-of-the -art schooling in a Wellington suburb',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'principally-yours-state-of-the-art-schooling-in-a-wellington-suburb',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 16:27:10',
       'post_modified_gmt' => '2015-06-29 04:27:10',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=635',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    5 => 
    WP_Post::__set_state(array(
       'ID' => 634,
       'post_author' => '1',
       'post_date' => '2015-06-29 15:48:25',
       'post_date_gmt' => '2015-06-29 03:48:25',
       'post_content' => '',
       'post_title' => 'Successful NZ School Principals',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'successful-nz-school-principals',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 16:24:48',
       'post_modified_gmt' => '2015-06-29 04:24:48',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=634',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    6 => 
    WP_Post::__set_state(array(
       'ID' => 633,
       'post_author' => '1',
       'post_date' => '2015-06-29 15:47:17',
       'post_date_gmt' => '2015-06-29 03:47:17',
       'post_content' => '',
       'post_title' => 'Self-regulated learning skills - A pilot study',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'self-regulated-learning-skills-a-pilot-study',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 15:47:25',
       'post_modified_gmt' => '2015-06-29 03:47:25',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=633',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    7 => 
    WP_Post::__set_state(array(
       'ID' => 632,
       'post_author' => '1',
       'post_date' => '2015-06-29 15:43:47',
       'post_date_gmt' => '2015-06-29 03:43:47',
       'post_content' => '',
       'post_title' => 'Raising Maori Achievement',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'raising-maori-achievement',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 15:46:24',
       'post_modified_gmt' => '2015-06-29 03:46:24',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=632',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    8 => 
    WP_Post::__set_state(array(
       'ID' => 631,
       'post_author' => '1',
       'post_date' => '2015-06-29 15:42:19',
       'post_date_gmt' => '2015-06-29 03:42:19',
       'post_content' => '',
       'post_title' => 'Charter schools: An investigation',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'charter-schools-an-investigation',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 15:42:43',
       'post_modified_gmt' => '2015-06-29 03:42:43',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=631',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    9 => 
    WP_Post::__set_state(array(
       'ID' => 630,
       'post_author' => '1',
       'post_date' => '2015-06-29 15:39:53',
       'post_date_gmt' => '2015-06-29 03:39:53',
       'post_content' => '',
       'post_title' => 'President\'s Pen - Reflecting on reforms',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen-reflecting-on-reforms',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 15:40:02',
       'post_modified_gmt' => '2015-06-29 03:40:02',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=630',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    10 => 
    WP_Post::__set_state(array(
       'ID' => 629,
       'post_author' => '1',
       'post_date' => '2015-06-29 15:38:50',
       'post_date_gmt' => '2015-06-29 03:38:50',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editorial-10',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 15:39:00',
       'post_modified_gmt' => '2015-06-29 03:39:00',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=629',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
  '2012 Term 1 March Issue' => 
  array (
    0 => 
    WP_Post::__set_state(array(
       'ID' => 652,
       'post_author' => '1',
       'post_date' => '2015-06-29 17:03:40',
       'post_date_gmt' => '2015-06-29 05:03:40',
       'post_content' => '',
       'post_title' => 'Rural Ramblings',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'rural-ramblings-5',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 17:04:22',
       'post_modified_gmt' => '2015-06-29 05:04:22',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=652',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 => 
    WP_Post::__set_state(array(
       'ID' => 651,
       'post_author' => '1',
       'post_date' => '2015-06-29 17:03:08',
       'post_date_gmt' => '2015-06-29 05:03:08',
       'post_content' => '',
       'post_title' => 'School Lines',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'school-lines-11',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 17:03:16',
       'post_modified_gmt' => '2015-06-29 05:03:16',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=651',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 => 
    WP_Post::__set_state(array(
       'ID' => 650,
       'post_author' => '1',
       'post_date' => '2015-06-29 17:02:36',
       'post_date_gmt' => '2015-06-29 05:02:36',
       'post_content' => '',
       'post_title' => 'Principal Appraisals',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'principal-appraisals',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 17:02:39',
       'post_modified_gmt' => '2015-06-29 05:02:39',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=650',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 => 
    WP_Post::__set_state(array(
       'ID' => 649,
       'post_author' => '1',
       'post_date' => '2015-06-29 17:01:28',
       'post_date_gmt' => '2015-06-29 05:01:28',
       'post_content' => '',
       'post_title' => 'Liz Millar retires from NZPF executive after eight illustrious years of service',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'liz-millar-retires-from-nzpf-executive-after-eight-illustrious-years-of-service',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 17:01:37',
       'post_modified_gmt' => '2015-06-29 05:01:37',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=649',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 => 
    WP_Post::__set_state(array(
       'ID' => 648,
       'post_author' => '1',
       'post_date' => '2015-06-29 16:57:17',
       'post_date_gmt' => '2015-06-29 04:57:17',
       'post_content' => '',
       'post_title' => 'Hillcrest Normal - Another example of the success of enviroschools',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'hillcrest-normal-another-example-of-the-success-of-enviroschools',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 16:57:38',
       'post_modified_gmt' => '2015-06-29 04:57:38',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=648',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    5 => 
    WP_Post::__set_state(array(
       'ID' => 647,
       'post_author' => '1',
       'post_date' => '2015-06-29 16:56:23',
       'post_date_gmt' => '2015-06-29 04:56:23',
       'post_content' => '',
       'post_title' => 'Capturing the culture of enviroschools',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'capturing-the-culture-of-enviroschools',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 16:56:26',
       'post_modified_gmt' => '2015-06-29 04:56:26',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=647',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    6 => 
    WP_Post::__set_state(array(
       'ID' => 646,
       'post_author' => '1',
       'post_date' => '2015-06-29 16:49:01',
       'post_date_gmt' => '2015-06-29 04:49:01',
       'post_content' => '',
       'post_title' => 'Principal(ly) yours: Enviroschools celebrate tenth birthday',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'principally-yours-enviroschools-celebrate-tenth-birthday',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 16:53:44',
       'post_modified_gmt' => '2015-06-29 04:53:44',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=646',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    7 => 
    WP_Post::__set_state(array(
       'ID' => 645,
       'post_author' => '1',
       'post_date' => '2015-06-29 16:46:32',
       'post_date_gmt' => '2015-06-29 04:46:32',
       'post_content' => '',
       'post_title' => 'Class size - does it matter ?',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'class-size-does-it-matter',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 16:47:03',
       'post_modified_gmt' => '2015-06-29 04:47:03',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=645',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    8 => 
    WP_Post::__set_state(array(
       'ID' => 644,
       'post_author' => '1',
       'post_date' => '2015-06-29 16:45:33',
       'post_date_gmt' => '2015-06-29 04:45:33',
       'post_content' => '',
       'post_title' => 'Can national standards close the achievement gap?',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'can-national-standards-close-the-achievement-gap',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 16:45:55',
       'post_modified_gmt' => '2015-06-29 04:45:55',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=644',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    9 => 
    WP_Post::__set_state(array(
       'ID' => 643,
       'post_author' => '1',
       'post_date' => '2015-06-29 16:44:01',
       'post_date_gmt' => '2015-06-29 04:44:01',
       'post_content' => '',
       'post_title' => 'Gifted and Talented Children: The Invercargill Experience',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'gifted-and-talented-children-the-invercargill-experience',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 16:44:48',
       'post_modified_gmt' => '2015-06-29 04:44:48',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=643',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    10 => 
    WP_Post::__set_state(array(
       'ID' => 642,
       'post_author' => '1',
       'post_date' => '2015-06-29 16:37:54',
       'post_date_gmt' => '2015-06-29 04:37:54',
       'post_content' => '',
       'post_title' => 'Te MARAUTANGA O AOTEAROA',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'te-marautanga-o-aotearoa',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 16:42:36',
       'post_modified_gmt' => '2015-06-29 04:42:36',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=642',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    11 => 
    WP_Post::__set_state(array(
       'ID' => 641,
       'post_author' => '1',
       'post_date' => '2015-06-29 16:36:02',
       'post_date_gmt' => '2015-06-29 04:36:02',
       'post_content' => '',
       'post_title' => 'President\'s Pen',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen-12',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 16:36:15',
       'post_modified_gmt' => '2015-06-29 04:36:15',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=641',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    12 => 
    WP_Post::__set_state(array(
       'ID' => 640,
       'post_author' => '1',
       'post_date' => '2015-06-29 16:35:19',
       'post_date_gmt' => '2015-06-29 04:35:19',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editorial-11',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-29 16:35:27',
       'post_modified_gmt' => '2015-06-29 04:35:27',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=640',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
)

Open in new window

I will provide a much more scaled down array as test data soon, sorry for over complicating this for contributors.
Avatar of arnold
How big is this  converting the string to
Converting the four field year day month issue
To YYYYMMDD and then it will sort itself by numeric value.
Where DD will presumably be either the beginning. Of the month or the end since it seems this is a quarterly issue.

What you effectively creating is a separate array that points to the recordswithin the other.

Depending on where this data is stored, using a separate table to create an identity table that will trigger ..........
No apology needed at all!  I can try to work with what we have from var_export().  That's why we put it into the language!  Back in a few...
You need to use a custom sort function (uksort) http://php.net/manual/en/function.uksort.php

Something like this
// CUSTOM COMPARE FUNCTION
function customCmp($a, $b)
{
  // EXTRACT YEAR AND TERM TO COMPARE
  $r = preg_match("/(\d+)\s+Term (\d) ([a-zA-Z]+)/", $a, $match1);
  $r = preg_match("/(\d+)\s+Term (\d) ([a-zA-Z]+)/", $b, $match2);

  // DO COMPARISON HERE
  if ($match1[1] < $match2[1]) return -1;
  if ($match1[1] > $match2[1]) return 1;
  if ($match1[2] < $match2[2]) return -1;
  if ($match1[2] > $match2[2]) return 1;
  
  return 0;
}

ksort($arr_mag, "customCmp");

Open in new window

This seems to work.  A few words of explanation are in order.

Dates can be sorted correctly if they are in the ISO-8601 format.  All internal representations of date/time values should be ISO-8601.  But the array keys are not ISO-8601, so we have to inject a suitable array key to allow sorting.  We can sort the data with PHP usort(), but the resulting sorted array will lose its original associative keys.  To overcome these limitations we go through the array capturing the original keys and creating an ISO-8601 sort key.  We inject these two named keys into each position of the array.

Now we can use usort() and the data will come back in the desired order.

The last thing we need to do is reconstruct the original associative array keys, and we can do this because we saved the original keys in the field named data_key.  The data_key and sort_key are no longer needed and were not part of the original data, so we remove them.

You can overlook the code in lines 2758-2761.  I only needed that because I am not working in the WordPress context, so I don't have WP_Post available in this script.

Please see http://iconoun.com/demo/temp_jwleys.php for the example given in the code snippet.  For this test I sorted the data in descending date order; it looked like it was already in ascending date order.
<?php // demo/temp_jwleys.php

/**
 * http://www.experts-exchange.com/questions/28694890/How-do-I-sort-an-associative-multidimensional-array-by-first-key-index-in-PHP.html
 * http://php.net/manual/en/function.usort.php
 * http://php.net/manual/en/function.var-export.php#114094
 *
 * Sortable key fields look like this:
   2013 Term 1 March Issue
   2013 Term 2 June Issue
   2013 Term 3 September Issue
   2013 Term 4 November Issue
 *
 * Strategy: Inject the ISO-8601 date into the array of WP_Post objects
 * and use usort() to get the data in the correct order.
 */
ini_set('display_errors', TRUE);
error_reporting(E_ALL);
echo '<pre>';


$str = <<<EOD
array (
  '2013 Term 1 March Issue' =>
  array (
    0 =>
    WP_Post::__set_state(array(
       'ID' => 564,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:33:10',
       'post_date_gmt' => '2015-06-17 22:33:10',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editorial-6',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:33:13',
       'post_modified_gmt' => '2015-06-17 22:33:13',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=564',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 =>
    WP_Post::__set_state(array(
       'ID' => 565,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:34:18',
       'post_date_gmt' => '2015-06-17 22:34:18',
       'post_content' => '',
       'post_title' => 'President\'s Pen',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen-9',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:34:20',
       'post_modified_gmt' => '2015-06-17 22:34:20',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=565',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 =>
    WP_Post::__set_state(array(
       'ID' => 566,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:36:06',
       'post_date_gmt' => '2015-06-17 22:36:06',
       'post_content' => '',
       'post_title' => 'Children Massaging Children: Hauora',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'children-massaging-children-hauora',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:36:10',
       'post_modified_gmt' => '2015-06-17 22:36:10',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=566',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 =>
    WP_Post::__set_state(array(
       'ID' => 567,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:36:58',
       'post_date_gmt' => '2015-06-17 22:36:58',
       'post_content' => '',
       'post_title' => 'Obituary',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'obituary',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:37:07',
       'post_modified_gmt' => '2015-06-17 22:37:07',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=567',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 =>
    WP_Post::__set_state(array(
       'ID' => 568,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:43:22',
       'post_date_gmt' => '2015-06-17 22:43:22',
       'post_content' => '',
       'post_title' => 'NZPF Honours Outstanding Contributions',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'nzpf-honours-outstanding-contributions',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 11:14:50',
       'post_modified_gmt' => '2015-06-17 23:14:50',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=568',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    5 =>
    WP_Post::__set_state(array(
       'ID' => 569,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:45:27',
       'post_date_gmt' => '2015-06-17 22:45:27',
       'post_content' => '',
       'post_title' => 'The Rich Kids',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'the-rich-kids',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:45:31',
       'post_modified_gmt' => '2015-06-17 22:45:31',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=569',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    6 =>
    WP_Post::__set_state(array(
       'ID' => 570,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:47:05',
       'post_date_gmt' => '2015-06-17 22:47:05',
       'post_content' => '',
       'post_title' => 'NZPF Conference - Claudlands Events\' Centre, Hamilton, 9-12 July',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'nzpf-conference-claudlands-events-centre-hamilton-9-12-july',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 11:14:32',
       'post_modified_gmt' => '2015-06-17 23:14:32',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=570',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    7 =>
    WP_Post::__set_state(array(
       'ID' => 571,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:48:17',
       'post_date_gmt' => '2015-06-17 22:48:17',
       'post_content' => '',
       'post_title' => 'Five Keys to Building and Maintaining Sustainable School Momentum',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'five-keys-to-building-and-maintaining-sustainable-school-momentum',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:48:20',
       'post_modified_gmt' => '2015-06-17 22:48:20',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=571',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    8 =>
    WP_Post::__set_state(array(
       'ID' => 572,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:49:42',
       'post_date_gmt' => '2015-06-17 22:49:42',
       'post_content' => '',
       'post_title' => 'Teaching Students Financial Skills for Life',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'teaching-students-financial-skills-for-life',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:49:45',
       'post_modified_gmt' => '2015-06-17 22:49:45',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=572',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    9 =>
    WP_Post::__set_state(array(
       'ID' => 573,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:50:19',
       'post_date_gmt' => '2015-06-17 22:50:19',
       'post_content' => '',
       'post_title' => 'School Lines',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'school-lines-6',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:50:22',
       'post_modified_gmt' => '2015-06-17 22:50:22',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=573',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    10 =>
    WP_Post::__set_state(array(
       'ID' => 574,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:51:47',
       'post_date_gmt' => '2015-06-17 22:51:47',
       'post_content' => '',
       'post_title' => 'Rural Ramblings',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'rural-ramblings',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:51:50',
       'post_modified_gmt' => '2015-06-17 22:51:50',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=574',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    11 =>
    WP_Post::__set_state(array(
       'ID' => 580,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:59:40',
       'post_date_gmt' => '2015-06-17 22:59:40',
       'post_content' => '',
       'post_title' => 'Powerful Reflection Activities that Empower Teachers to Change',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'powerful-reflection-activities-that-empower-teachers-to-change',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:59:43',
       'post_modified_gmt' => '2015-06-17 22:59:43',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=580',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
  '2013 Term 2 June Issue' =>
  array (
    0 =>
    WP_Post::__set_state(array(
       'ID' => 575,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:53:13',
       'post_date_gmt' => '2015-06-17 22:53:13',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editorial-7',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:53:16',
       'post_modified_gmt' => '2015-06-17 22:53:16',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=575',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 =>
    WP_Post::__set_state(array(
       'ID' => 576,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:54:23',
       'post_date_gmt' => '2015-06-17 22:54:23',
       'post_content' => '',
       'post_title' => 'President\'s Pen',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen-10',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:54:54',
       'post_modified_gmt' => '2015-06-17 22:54:54',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=576',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 =>
    WP_Post::__set_state(array(
       'ID' => 577,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:55:35',
       'post_date_gmt' => '2015-06-17 22:55:35',
       'post_content' => '',
       'post_title' => 'NZPF Moot 2013',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'nzpf-moot-2013',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 11:14:07',
       'post_modified_gmt' => '2015-06-17 23:14:07',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=577',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 =>
    WP_Post::__set_state(array(
       'ID' => 578,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:56:54',
       'post_date_gmt' => '2015-06-17 22:56:54',
       'post_content' => '',
       'post_title' => 'NZCER - Explaining Star Assessment Changes',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'nzcer-explaining-star-assessment-changes',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 11:13:23',
       'post_modified_gmt' => '2015-06-17 23:13:23',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=578',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 =>
    WP_Post::__set_state(array(
       'ID' => 579,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:58:00',
       'post_date_gmt' => '2015-06-17 22:58:00',
       'post_content' => '',
       'post_title' => 'Learning Remarkably',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'learning-remarkably',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:58:00',
       'post_modified_gmt' => '2015-06-17 22:58:00',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=579',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
  '2013 Term 3 September Issue' =>
  array (
    0 =>
    WP_Post::__set_state(array(
       'ID' => 517,
       'post_author' => '1',
       'post_date' => '2015-06-16 22:22:15',
       'post_date_gmt' => '2015-06-16 10:22:15',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editoral-3',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 09:17:21',
       'post_modified_gmt' => '2015-06-17 21:17:21',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=517',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 =>
    WP_Post::__set_state(array(
       'ID' => 518,
       'post_author' => '1',
       'post_date' => '2015-06-16 22:23:25',
       'post_date_gmt' => '2015-06-16 10:23:25',
       'post_content' => '',
       'post_title' => 'President\'s Pen',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen-6',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 22:23:29',
       'post_modified_gmt' => '2015-06-16 10:23:29',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=518',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 =>
    WP_Post::__set_state(array(
       'ID' => 519,
       'post_author' => '1',
       'post_date' => '2015-06-16 22:25:59',
       'post_date_gmt' => '2015-06-16 10:25:59',
       'post_content' => '',
       'post_title' => 'Matauranga Maori an NZPF initiative',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'matauranga-maori-an-nzpf-initiative',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 22:26:21',
       'post_modified_gmt' => '2015-06-16 10:26:21',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=519',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 =>
    WP_Post::__set_state(array(
       'ID' => 531,
       'post_author' => '1',
       'post_date' => '2015-06-17 15:39:17',
       'post_date_gmt' => '2015-06-17 03:39:17',
       'post_content' => '',
       'post_title' => '\'Willowbank School\' In thirty languages',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'willowbank-school-in-thirty-languages',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 15:39:20',
       'post_modified_gmt' => '2015-06-17 03:39:20',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=531',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 =>
    WP_Post::__set_state(array(
       'ID' => 532,
       'post_author' => '1',
       'post_date' => '2015-06-17 15:47:52',
       'post_date_gmt' => '2015-06-17 03:47:52',
       'post_content' => '',
       'post_title' => 'Principals\' Advise - Helping Principals achieve a successful outcome',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'principals-advise-helping-principals-achieve-a-successful-outcome',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 15:47:52',
       'post_modified_gmt' => '2015-06-17 03:47:52',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=532',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    5 =>
    WP_Post::__set_state(array(
       'ID' => 533,
       'post_author' => '1',
       'post_date' => '2015-06-17 15:50:05',
       'post_date_gmt' => '2015-06-17 03:50:05',
       'post_content' => '',
       'post_title' => 'Cow bells call principals to conference - Power to innovate - NZPF National Conference',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'cow-bells-call-principals-to-conference-power-to-innovate-nzpf-national-conference',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 15:50:05',
       'post_modified_gmt' => '2015-06-17 03:50:05',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=533',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    6 =>
    WP_Post::__set_state(array(
       'ID' => 534,
       'post_author' => '1',
       'post_date' => '2015-06-17 15:50:51',
       'post_date_gmt' => '2015-06-17 03:50:51',
       'post_content' => '',
       'post_title' => 'Should we use cognitive enhancers?',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'should-we-use-cognitive-enhancers',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 15:50:51',
       'post_modified_gmt' => '2015-06-17 03:50:51',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=534',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    7 =>
    WP_Post::__set_state(array(
       'ID' => 535,
       'post_author' => '1',
       'post_date' => '2015-06-17 15:52:06',
       'post_date_gmt' => '2015-06-17 03:52:06',
       'post_content' => '',
       'post_title' => 'School lines',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'school-lines-5',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 15:52:06',
       'post_modified_gmt' => '2015-06-17 03:52:06',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=535',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    8 =>
    WP_Post::__set_state(array(
       'ID' => 536,
       'post_author' => '1',
       'post_date' => '2015-06-17 15:52:49',
       'post_date_gmt' => '2015-06-17 03:52:49',
       'post_content' => '',
       'post_title' => 'What\'s on top - Then there were none',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'whats-on-top-then-there-were-none',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 15:52:51',
       'post_modified_gmt' => '2015-06-17 03:52:51',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=536',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
  '2013 Term 4 November Issue' =>
  array (
    0 =>
    WP_Post::__set_state(array(
       'ID' => 551,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:04:16',
       'post_date_gmt' => '2015-06-17 22:04:16',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editorial-5',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:04:20',
       'post_modified_gmt' => '2015-06-17 22:04:20',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=551',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 =>
    WP_Post::__set_state(array(
       'ID' => 554,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:05:38',
       'post_date_gmt' => '2015-06-17 22:05:38',
       'post_content' => '',
       'post_title' => 'President\'s Pen',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen-8',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:05:41',
       'post_modified_gmt' => '2015-06-17 22:05:41',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=554',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 =>
    WP_Post::__set_state(array(
       'ID' => 555,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:06:52',
       'post_date_gmt' => '2015-06-17 22:06:52',
       'post_content' => '',
       'post_title' => 'The National Aspiring Principals\' Programme',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'the-national-aspiring-principals-programme',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:06:56',
       'post_modified_gmt' => '2015-06-17 22:06:56',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=555',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 =>
    WP_Post::__set_state(array(
       'ID' => 556,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:08:40',
       'post_date_gmt' => '2015-06-17 22:08:40',
       'post_content' => '',
       'post_title' => 'Reading Recovery and Beyond',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'reading-recovery-beyond',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:10:11',
       'post_modified_gmt' => '2015-06-17 22:10:11',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=556',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 =>
    WP_Post::__set_state(array(
       'ID' => 557,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:12:08',
       'post_date_gmt' => '2015-06-17 22:12:08',
       'post_content' => '',
       'post_title' => 'Managing the return to school following \'Stand Down\'',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'managing-the-return-to-school-following-stand-down',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:12:11',
       'post_modified_gmt' => '2015-06-17 22:12:11',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=557',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    5 =>
    WP_Post::__set_state(array(
       'ID' => 558,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:13:15',
       'post_date_gmt' => '2015-06-17 22:13:15',
       'post_content' => '',
       'post_title' => 'Highlights at Hillsborough',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'highlights-at-hillsborough',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:13:20',
       'post_modified_gmt' => '2015-06-17 22:13:20',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=558',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    6 =>
    WP_Post::__set_state(array(
       'ID' => 559,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:16:02',
       'post_date_gmt' => '2015-06-17 22:16:02',
       'post_content' => '',
       'post_title' => 'The Manufacture of Education Myths and Mantras - some reflections on the Christchurch school renewal project',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'the-manufacture-of-education-myths-and-mantras-some-reflections-on-the-christchurch-school-renewal-project',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:17:33',
       'post_modified_gmt' => '2015-06-17 22:17:33',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=559',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    7 =>
    WP_Post::__set_state(array(
       'ID' => 560,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:18:33',
       'post_date_gmt' => '2015-06-17 22:18:33',
       'post_content' => '',
       'post_title' => 'Hidden Politics of Tomorrow\'s Schools',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'hidden-politics-of-tomorrows-schools',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:18:36',
       'post_modified_gmt' => '2015-06-17 22:18:36',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=560',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    8 =>
    WP_Post::__set_state(array(
       'ID' => 561,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:20:57',
       'post_date_gmt' => '2015-06-17 22:20:57',
       'post_content' => '',
       'post_title' => 'Revitalising the Role of Public Education - an alternative to the growing privatisation of education',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'revitalising-the-role-of-public-education-an-alternative-to-the-growing-privatisation-of-education',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:21:01',
       'post_modified_gmt' => '2015-06-17 22:21:01',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=561',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    9 =>
    WP_Post::__set_state(array(
       'ID' => 562,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:23:18',
       'post_date_gmt' => '2015-06-17 22:23:18',
       'post_content' => '',
       'post_title' => 'School Lines - children are children, and statistics are numbers',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'school-lines-children-are-children-and-statistics-are-numbers',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:23:25',
       'post_modified_gmt' => '2015-06-17 22:23:25',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=562',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    10 =>
    WP_Post::__set_state(array(
       'ID' => 563,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:24:20',
       'post_date_gmt' => '2015-06-17 22:24:20',
       'post_content' => '',
       'post_title' => 'What\'s on Top - Tragedy as a source of strength...',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'whats-on-top-tragedy-as-a-source-of-strength',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:24:22',
       'post_modified_gmt' => '2015-06-17 22:24:22',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=563',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
  '2014 Term 1 March Issue' =>
  array (
    0 =>
    WP_Post::__set_state(array(
       'ID' => 537,
       'post_author' => '1',
       'post_date' => '2015-06-17 16:24:31',
       'post_date_gmt' => '2015-06-17 04:24:31',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editorial-4',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 16:24:33',
       'post_modified_gmt' => '2015-06-17 04:24:33',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=537',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 =>
    WP_Post::__set_state(array(
       'ID' => 538,
       'post_author' => '1',
       'post_date' => '2015-06-17 16:25:36',
       'post_date_gmt' => '2015-06-17 04:25:36',
       'post_content' => '',
       'post_title' => 'President\'s Pen',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen-7',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 16:25:40',
       'post_modified_gmt' => '2015-06-17 04:25:40',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=538',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 =>
    WP_Post::__set_state(array(
       'ID' => 539,
       'post_author' => '1',
       'post_date' => '2015-06-17 16:26:31',
       'post_date_gmt' => '2015-06-17 04:26:31',
       'post_content' => '',
       'post_title' => 'NZPF Executive Members retire',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'nzpf-executive-members-retire',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 16:26:33',
       'post_modified_gmt' => '2015-06-17 04:26:33',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=539',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 =>
    WP_Post::__set_state(array(
       'ID' => 540,
       'post_author' => '1',
       'post_date' => '2015-06-17 16:27:41',
       'post_date_gmt' => '2015-06-17 04:27:41',
       'post_content' => '',
       'post_title' => 'More bad news for national standards',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'more-bad-news-for-national-standards',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-17 16:27:45',
       'post_modified_gmt' => '2015-06-17 04:27:45',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=540',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 =>
    WP_Post::__set_state(array(
       'ID' => 541,
       'post_author' => '1',
       'post_date' => '2015-06-18 09:31:37',
       'post_date_gmt' => '2015-06-17 21:31:37',
       'post_content' => '',
       'post_title' => 'Educational inequalities will not be reduced using business process models',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'educational-inequalities-will-not-be-reduced-using-business-process-models',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 09:35:43',
       'post_modified_gmt' => '2015-06-17 21:35:43',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=541',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    5 =>
    WP_Post::__set_state(array(
       'ID' => 542,
       'post_author' => '1',
       'post_date' => '2015-06-18 09:42:11',
       'post_date_gmt' => '2015-06-17 21:42:11',
       'post_content' => '',
       'post_title' => 'Does NZ have a long tail of underachievement? - Getting to the truth of the matter',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'does-nz-have-a-long-tail-of-underachievement-getting-to-the-truth-of-the-matter',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 09:42:19',
       'post_modified_gmt' => '2015-06-17 21:42:19',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=542',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    6 =>
    WP_Post::__set_state(array(
       'ID' => 543,
       'post_author' => '1',
       'post_date' => '2015-06-18 09:51:09',
       'post_date_gmt' => '2015-06-17 21:51:09',
       'post_content' => '',
       'post_title' => 'Moving on up in Manurewa - The story of Manurewa Intermediate School',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'moving-on-up-in-manurewa-the-story-of-manurewa-intermediate-school',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 09:51:17',
       'post_modified_gmt' => '2015-06-17 21:51:17',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=543',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    7 =>
    WP_Post::__set_state(array(
       'ID' => 544,
       'post_author' => '1',
       'post_date' => '2015-06-18 09:55:35',
       'post_date_gmt' => '2015-06-17 21:55:35',
       'post_content' => '',
       'post_title' => 'A Principle to Govern Education Policy - Abolishing National Standards',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'a-principle-to-govern-education-policy-abolishing-national-standards',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 09:55:40',
       'post_modified_gmt' => '2015-06-17 21:55:40',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=544',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    8 =>
    WP_Post::__set_state(array(
       'ID' => 546,
       'post_author' => '1',
       'post_date' => '2015-06-18 09:57:44',
       'post_date_gmt' => '2015-06-17 21:57:44',
       'post_content' => '',
       'post_title' => 'School Lines - Sceptical, Cynical, Critically Analytical, or Naive?',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'school-lines-sceptical-cynical-critically-analytical-or-naive',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 09:57:48',
       'post_modified_gmt' => '2015-06-17 21:57:48',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=546',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    9 =>
    WP_Post::__set_state(array(
       'ID' => 548,
       'post_author' => '1',
       'post_date' => '2015-06-18 10:02:09',
       'post_date_gmt' => '2015-06-17 22:02:09',
       'post_content' => '',
       'post_title' => 'What\'s on Top? - The wonders of modern technology...',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'whats-on-top-the-wonders-of-modern-technology',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 10:02:16',
       'post_modified_gmt' => '2015-06-17 22:02:16',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=548',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
  '2014 Term 2 June Issue' =>
  array (
    0 =>
    WP_Post::__set_state(array(
       'ID' => 460,
       'post_author' => '1',
       'post_date' => '2015-06-15 13:22:38',
       'post_date_gmt' => '2015-06-15 01:22:38',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editorial-2',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-15 14:48:50',
       'post_modified_gmt' => '2015-06-15 02:48:50',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=460',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 =>
    WP_Post::__set_state(array(
       'ID' => 461,
       'post_author' => '1',
       'post_date' => '2015-06-15 13:24:41',
       'post_date_gmt' => '2015-06-15 01:24:41',
       'post_content' => '',
       'post_title' => 'President\'s Pen',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen-4',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-15 14:48:06',
       'post_modified_gmt' => '2015-06-15 02:48:06',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=461',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 =>
    WP_Post::__set_state(array(
       'ID' => 462,
       'post_author' => '1',
       'post_date' => '2015-06-15 13:37:12',
       'post_date_gmt' => '2015-06-15 01:37:12',
       'post_content' => '',
       'post_title' => 'NZPF Moot',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'nzpf-moot-2',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-15 14:47:45',
       'post_modified_gmt' => '2015-06-15 02:47:45',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=462',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 =>
    WP_Post::__set_state(array(
       'ID' => 463,
       'post_author' => '1',
       'post_date' => '2015-06-15 13:44:11',
       'post_date_gmt' => '2015-06-15 01:44:11',
       'post_content' => '',
       'post_title' => 'Gifted Curriculum in New Zealand: A road less travelled',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'gifted-curriculum-in-new-zealand-a-road-less-travelled',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-15 14:47:29',
       'post_modified_gmt' => '2015-06-15 02:47:29',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=463',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 =>
    WP_Post::__set_state(array(
       'ID' => 464,
       'post_author' => '1',
       'post_date' => '2015-06-15 14:01:29',
       'post_date_gmt' => '2015-06-15 02:01:29',
       'post_content' => '',
       'post_title' => 'Geoff Lovegrove Retires',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'geoff-lovegrove-retires',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-15 14:46:34',
       'post_modified_gmt' => '2015-06-15 02:46:34',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=464',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    5 =>
    WP_Post::__set_state(array(
       'ID' => 467,
       'post_author' => '1',
       'post_date' => '2015-06-15 14:52:00',
       'post_date_gmt' => '2015-06-15 02:52:00',
       'post_content' => '',
       'post_title' => 'NZPF Conference 2014: A real southern experience',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'nzpf-conference-2014-a-real-southern-experience',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-15 14:52:00',
       'post_modified_gmt' => '2015-06-15 02:52:00',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=467',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    6 =>
    WP_Post::__set_state(array(
       'ID' => 468,
       'post_author' => '1',
       'post_date' => '2015-06-15 14:53:06',
       'post_date_gmt' => '2015-06-15 02:53:06',
       'post_content' => '',
       'post_title' => 'Taranaki\'s Toko School collaborates',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'taranakis-toko-school-collaborates',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-15 14:53:06',
       'post_modified_gmt' => '2015-06-15 02:53:06',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=468',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    7 =>
    WP_Post::__set_state(array(
       'ID' => 469,
       'post_author' => '1',
       'post_date' => '2015-06-15 15:02:23',
       'post_date_gmt' => '2015-06-15 03:02:23',
       'post_content' => '',
       'post_title' => 'Challenging a myth: Teachers do not have the greatest within-school impact on student achievement',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'challenging-a-myth-teachers-do-not-have-the-greatest-within-school-impact-on-student-achievement',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-15 15:02:23',
       'post_modified_gmt' => '2015-06-15 03:02:23',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=469',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    8 =>
    WP_Post::__set_state(array(
       'ID' => 471,
       'post_author' => '1',
       'post_date' => '2015-06-15 15:08:20',
       'post_date_gmt' => '2015-06-15 03:08:20',
       'post_content' => '',
       'post_title' => 'Seven values of highly effective principals',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'seven-values-of-highly-effective-principals',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-15 15:08:20',
       'post_modified_gmt' => '2015-06-15 03:08:20',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=471',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    9 =>
    WP_Post::__set_state(array(
       'ID' => 472,
       'post_author' => '1',
       'post_date' => '2015-06-15 15:11:21',
       'post_date_gmt' => '2015-06-15 03:11:21',
       'post_content' => '',
       'post_title' => 'School lines',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'school-lines-3',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-15 15:11:21',
       'post_modified_gmt' => '2015-06-15 03:11:21',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=472',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    10 =>
    WP_Post::__set_state(array(
       'ID' => 473,
       'post_author' => '1',
       'post_date' => '2015-06-15 15:14:00',
       'post_date_gmt' => '2015-06-15 03:14:00',
       'post_content' => '',
       'post_title' => 'ATA WHAKAAROHIA  - A story of mentoring in a special education setting',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'ata-whakaarohia-a-story-of-mentoring-in-a-special-education-setting',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-15 15:20:22',
       'post_modified_gmt' => '2015-06-15 03:20:22',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=473',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    11 =>
    WP_Post::__set_state(array(
       'ID' => 474,
       'post_author' => '1',
       'post_date' => '2015-06-15 15:32:47',
       'post_date_gmt' => '2015-06-15 03:32:47',
       'post_content' => '',
       'post_title' => 'Take a deep breath: Integrating into a new school culture',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'take-a-deep-breath-integrating-into-a-new-school-culture',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-15 15:57:24',
       'post_modified_gmt' => '2015-06-15 03:57:24',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=474',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
  '2014 Term 3 September Issue' =>
  array (
    0 =>
    WP_Post::__set_state(array(
       'ID' => 481,
       'post_author' => '1',
       'post_date' => '2015-06-16 09:46:45',
       'post_date_gmt' => '2015-06-15 21:46:45',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editorial-3',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 09:46:51',
       'post_modified_gmt' => '2015-06-15 21:46:51',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=481',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 =>
    WP_Post::__set_state(array(
       'ID' => 482,
       'post_author' => '1',
       'post_date' => '2015-06-16 09:48:05',
       'post_date_gmt' => '2015-06-15 21:48:05',
       'post_content' => '',
       'post_title' => 'President\'s Pen',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen-5',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 09:48:05',
       'post_modified_gmt' => '2015-06-15 21:48:05',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=482',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 =>
    WP_Post::__set_state(array(
       'ID' => 483,
       'post_author' => '1',
       'post_date' => '2015-06-16 09:56:33',
       'post_date_gmt' => '2015-06-15 21:56:33',
       'post_content' => '',
       'post_title' => 'On using cognitive enhancers to raise student achievement: An update',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'on-using-cognitive-enhancers-to-raise-student-achievement-an-update',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 09:56:36',
       'post_modified_gmt' => '2015-06-15 21:56:36',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=483',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 =>
    WP_Post::__set_state(array(
       'ID' => 495,
       'post_author' => '1',
       'post_date' => '2015-06-16 12:21:26',
       'post_date_gmt' => '2015-06-16 00:21:26',
       'post_content' => '',
       'post_title' => 'What matters in the future ?',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'what-matters-in-the-future',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 12:21:26',
       'post_modified_gmt' => '2015-06-16 00:21:26',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=495',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 =>
    WP_Post::__set_state(array(
       'ID' => 496,
       'post_author' => '1',
       'post_date' => '2015-06-16 12:23:19',
       'post_date_gmt' => '2015-06-16 00:23:19',
       'post_content' => '',
       'post_title' => 'NZPF Legal Support Scheme',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'nzpf-legal-support-scheme',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 12:23:36',
       'post_modified_gmt' => '2015-06-16 00:23:36',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=496',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    5 =>
    WP_Post::__set_state(array(
       'ID' => 497,
       'post_author' => '1',
       'post_date' => '2015-06-16 12:26:35',
       'post_date_gmt' => '2015-06-16 00:26:35',
       'post_content' => '',
       'post_title' => 'Enacting high expectations for all students',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'enacting-high-expectations-for-all-students',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 12:26:35',
       'post_modified_gmt' => '2015-06-16 00:26:35',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=497',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    6 =>
    WP_Post::__set_state(array(
       'ID' => 498,
       'post_author' => '1',
       'post_date' => '2015-06-16 12:27:39',
       'post_date_gmt' => '2015-06-16 00:27:39',
       'post_content' => '',
       'post_title' => 'Introducing creative commons',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'introducing-creative-commons',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 12:27:47',
       'post_modified_gmt' => '2015-06-16 00:27:47',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=498',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    7 =>
    WP_Post::__set_state(array(
       'ID' => 499,
       'post_author' => '1',
       'post_date' => '2015-06-16 12:28:46',
       'post_date_gmt' => '2015-06-16 00:28:46',
       'post_content' => '',
       'post_title' => 'High flying at Newton Central',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'high-flying-at-newton-central',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 12:28:51',
       'post_modified_gmt' => '2015-06-16 00:28:51',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=499',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    8 =>
    WP_Post::__set_state(array(
       'ID' => 500,
       'post_author' => '1',
       'post_date' => '2015-06-16 12:30:08',
       'post_date_gmt' => '2015-06-16 00:30:08',
       'post_content' => '',
       'post_title' => 'The eight continuums of school culture',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'the-eight-continuums-of-school-culture',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 12:30:13',
       'post_modified_gmt' => '2015-06-16 00:30:13',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=500',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    9 =>
    WP_Post::__set_state(array(
       'ID' => 501,
       'post_author' => '1',
       'post_date' => '2015-06-16 12:33:10',
       'post_date_gmt' => '2015-06-16 00:33:10',
       'post_content' => '',
       'post_title' => 'Outside looking in: IES, A research perspective',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'outside-looking-in-ies-a-research-perspective',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 12:33:16',
       'post_modified_gmt' => '2015-06-16 00:33:16',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=501',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    10 =>
    WP_Post::__set_state(array(
       'ID' => 502,
       'post_author' => '1',
       'post_date' => '2015-06-16 12:33:45',
       'post_date_gmt' => '2015-06-16 00:33:45',
       'post_content' => '',
       'post_title' => 'School lines',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'school-lines-4',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 12:33:51',
       'post_modified_gmt' => '2015-06-16 00:33:51',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=502',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    11 =>
    WP_Post::__set_state(array(
       'ID' => 503,
       'post_author' => '1',
       'post_date' => '2015-06-16 12:34:22',
       'post_date_gmt' => '2015-06-16 00:34:22',
       'post_content' => '',
       'post_title' => 'A better start in life',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'a-better-start-in-life',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-16 12:34:26',
       'post_modified_gmt' => '2015-06-16 00:34:26',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=503',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
  '2014 Term 4 November Issue' =>
  array (
    0 =>
    WP_Post::__set_state(array(
       'ID' => 387,
       'post_author' => '1',
       'post_date' => '2015-04-22 16:26:15',
       'post_date_gmt' => '2015-04-22 04:26:15',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editorial',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 16:26:15',
       'post_modified_gmt' => '2015-04-22 04:26:15',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=387',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 =>
    WP_Post::__set_state(array(
       'ID' => 388,
       'post_author' => '1',
       'post_date' => '2015-04-22 16:27:45',
       'post_date_gmt' => '2015-04-22 04:27:45',
       'post_content' => '',
       'post_title' => 'President\'s Pen',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen-2',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 16:27:45',
       'post_modified_gmt' => '2015-04-22 04:27:45',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=388',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 =>
    WP_Post::__set_state(array(
       'ID' => 389,
       'post_author' => '1',
       'post_date' => '2015-04-22 16:28:38',
       'post_date_gmt' => '2015-04-22 04:28:38',
       'post_content' => '',
       'post_title' => 'Six keys for Digital Leadership',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'six-keys-for-digital-leadership',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 16:28:38',
       'post_modified_gmt' => '2015-04-22 04:28:38',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=389',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 =>
    WP_Post::__set_state(array(
       'ID' => 390,
       'post_author' => '1',
       'post_date' => '2015-04-22 16:29:48',
       'post_date_gmt' => '2015-04-22 04:29:48',
       'post_content' => '',
       'post_title' => 'NZPF Conference 2014 - A Southland Extravaganza',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'nzpf-conference-2014-a-southland-extravaganza',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 16:29:48',
       'post_modified_gmt' => '2015-04-22 04:29:48',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=390',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 =>
    WP_Post::__set_state(array(
       'ID' => 391,
       'post_author' => '1',
       'post_date' => '2015-04-22 16:40:53',
       'post_date_gmt' => '2015-04-22 04:40:53',
       'post_content' => '',
       'post_title' => 'Awatapu College - Preparing Students for the Future',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'awatapu-college-preparing-students-for-the-future',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 16:40:53',
       'post_modified_gmt' => '2015-04-22 04:40:53',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=391',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    5 =>
    WP_Post::__set_state(array(
       'ID' => 392,
       'post_author' => '1',
       'post_date' => '2015-04-22 16:44:35',
       'post_date_gmt' => '2015-04-22 04:44:35',
       'post_content' => '',
       'post_title' => 'Religious Instruction in NZ State Primary Schools',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'religious-instruction-in-nz-state-primary-schools',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 16:44:35',
       'post_modified_gmt' => '2015-04-22 04:44:35',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=392',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    6 =>
    WP_Post::__set_state(array(
       'ID' => 393,
       'post_author' => '1',
       'post_date' => '2015-04-22 16:49:00',
       'post_date_gmt' => '2015-04-22 04:49:00',
       'post_content' => '',
       'post_title' => 'Neuroscience and Education - The importance of social class and family background',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'neuroscience-and-education-the-importance-of-social-class-and-family-background',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 16:49:00',
       'post_modified_gmt' => '2015-04-22 04:49:00',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=393',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    7 =>
    WP_Post::__set_state(array(
       'ID' => 394,
       'post_author' => '1',
       'post_date' => '2015-04-22 16:49:31',
       'post_date_gmt' => '2015-04-22 04:49:31',
       'post_content' => '',
       'post_title' => 'School Lines',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'school-lines',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 16:49:31',
       'post_modified_gmt' => '2015-04-22 04:49:31',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=394',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    8 =>
    WP_Post::__set_state(array(
       'ID' => 395,
       'post_author' => '1',
       'post_date' => '2015-04-22 16:49:58',
       'post_date_gmt' => '2015-04-22 04:49:58',
       'post_content' => '',
       'post_title' => 'Positive ID',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'positive-id',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 16:49:58',
       'post_modified_gmt' => '2015-04-22 04:49:58',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=395',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
  '2015 Term 1 March Issue' =>
  array (
    0 =>
    WP_Post::__set_state(array(
       'ID' => 372,
       'post_author' => '1',
       'post_date' => '2015-04-22 14:46:55',
       'post_date_gmt' => '2015-04-22 02:46:55',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editoral',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 09:18:39',
       'post_modified_gmt' => '2015-06-17 21:18:39',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=372',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 =>
    WP_Post::__set_state(array(
       'ID' => 374,
       'post_author' => '1',
       'post_date' => '2015-04-22 15:35:04',
       'post_date_gmt' => '2015-04-22 03:35:04',
       'post_content' => '',
       'post_title' => 'President\'s Pen',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 15:35:04',
       'post_modified_gmt' => '2015-04-22 03:35:04',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=374',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 =>
    WP_Post::__set_state(array(
       'ID' => 375,
       'post_author' => '1',
       'post_date' => '2015-04-22 15:43:49',
       'post_date_gmt' => '2015-04-22 03:43:49',
       'post_content' => '',
       'post_title' => 'Middle Leaders Development in Christchurch',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'middle-leaders-development-in-christchurch',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 15:43:49',
       'post_modified_gmt' => '2015-04-22 03:43:49',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=375',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 =>
    WP_Post::__set_state(array(
       'ID' => 376,
       'post_author' => '1',
       'post_date' => '2015-04-22 15:44:32',
       'post_date_gmt' => '2015-04-22 03:44:32',
       'post_content' => '',
       'post_title' => 'Digital Learning',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'digital-learning',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 15:44:32',
       'post_modified_gmt' => '2015-04-22 03:44:32',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=376',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 =>
    WP_Post::__set_state(array(
       'ID' => 377,
       'post_author' => '1',
       'post_date' => '2015-04-22 15:48:03',
       'post_date_gmt' => '2015-04-22 03:48:03',
       'post_content' => '',
       'post_title' => 'The Leadership Sweet Spot',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'the-leadership-sweet-spot',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 15:48:03',
       'post_modified_gmt' => '2015-04-22 03:48:03',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=377',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    5 =>
    WP_Post::__set_state(array(
       'ID' => 378,
       'post_author' => '1',
       'post_date' => '2015-04-22 15:48:49',
       'post_date_gmt' => '2015-04-22 03:48:49',
       'post_content' => '',
       'post_title' => 'Farewells to NZPF Executive Members',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'farewells-to-nzpf-executive-members',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 15:48:49',
       'post_modified_gmt' => '2015-04-22 03:48:49',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=378',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    6 =>
    WP_Post::__set_state(array(
       'ID' => 379,
       'post_author' => '1',
       'post_date' => '2015-04-22 15:50:05',
       'post_date_gmt' => '2015-04-22 03:50:05',
       'post_content' => '',
       'post_title' => 'Wakefield School Nelson',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'wakefield-school-nelson',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 15:50:05',
       'post_modified_gmt' => '2015-04-22 03:50:05',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=379',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    7 =>
    WP_Post::__set_state(array(
       'ID' => 380,
       'post_author' => '1',
       'post_date' => '2015-04-22 15:51:02',
       'post_date_gmt' => '2015-04-22 03:51:02',
       'post_content' => '',
       'post_title' => 'Phonics Programmes: What they can and cannot do',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'phonics-programmes-what-they-can-and-cannot-do',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 15:51:02',
       'post_modified_gmt' => '2015-04-22 03:51:02',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=380',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    8 =>
    WP_Post::__set_state(array(
       'ID' => 381,
       'post_author' => '1',
       'post_date' => '2015-04-22 15:53:38',
       'post_date_gmt' => '2015-04-22 03:53:38',
       'post_content' => '',
       'post_title' => 'Can Neuroscience and Education bridge the is-ought gap of theory and practice',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'can-neuroscience-and-education-bridge-the-is-ought-gap-of-theory-and-practice',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 16:42:44',
       'post_modified_gmt' => '2015-04-22 04:42:44',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=381',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    9 =>
    WP_Post::__set_state(array(
       'ID' => 382,
       'post_author' => '1',
       'post_date' => '2015-04-22 15:57:43',
       'post_date_gmt' => '2015-04-22 03:57:43',
       'post_content' => '',
       'post_title' => 'Positivism and Negativism - Tools of mind for leading educators',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'positivism-and-negativism-tools-of-mind-for-leading-educators',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 15:57:43',
       'post_modified_gmt' => '2015-04-22 03:57:43',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=382',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    10 =>
    WP_Post::__set_state(array(
       'ID' => 383,
       'post_author' => '1',
       'post_date' => '2015-04-22 15:58:35',
       'post_date_gmt' => '2015-04-22 03:58:35',
       'post_content' => '',
       'post_title' => 'Education for all',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'education-for-all',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-04-22 15:58:35',
       'post_modified_gmt' => '2015-04-22 03:58:35',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=383',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
  '2015 Term 2 June Issue' =>
  array (
    0 =>
    WP_Post::__set_state(array(
       'ID' => 441,
       'post_author' => '1',
       'post_date' => '2015-06-12 09:46:21',
       'post_date_gmt' => '2015-06-11 21:46:21',
       'post_content' => '',
       'post_title' => 'Editorial',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'editoral-2',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-18 09:18:14',
       'post_modified_gmt' => '2015-06-17 21:18:14',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=441',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    1 =>
    WP_Post::__set_state(array(
       'ID' => 444,
       'post_author' => '1',
       'post_date' => '2015-06-12 11:53:27',
       'post_date_gmt' => '2015-06-11 23:53:27',
       'post_content' => '',
       'post_title' => 'President\'s Pen',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'presidents-pen-3',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-12 11:53:31',
       'post_modified_gmt' => '2015-06-11 23:53:31',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=444',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    2 =>
    WP_Post::__set_state(array(
       'ID' => 445,
       'post_author' => '1',
       'post_date' => '2015-06-12 11:54:25',
       'post_date_gmt' => '2015-06-11 23:54:25',
       'post_content' => '',
       'post_title' => '6 Drivers of Stression',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => '6-drivers-of-stression',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-12 11:54:28',
       'post_modified_gmt' => '2015-06-11 23:54:28',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=445',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    3 =>
    WP_Post::__set_state(array(
       'ID' => 446,
       'post_author' => '1',
       'post_date' => '2015-06-12 11:56:23',
       'post_date_gmt' => '2015-06-11 23:56:23',
       'post_content' => '',
       'post_title' => 'NZPF Moot',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'nzpf-moot',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-12 11:58:49',
       'post_modified_gmt' => '2015-06-11 23:58:49',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=446',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    4 =>
    WP_Post::__set_state(array(
       'ID' => 447,
       'post_author' => '1',
       'post_date' => '2015-06-12 12:02:22',
       'post_date_gmt' => '2015-06-12 00:02:22',
       'post_content' => '',
       'post_title' => 'How to write grant applications',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'how-to-write-grant-applications',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-12 12:02:27',
       'post_modified_gmt' => '2015-06-12 00:02:27',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=447',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    5 =>
    WP_Post::__set_state(array(
       'ID' => 448,
       'post_author' => '1',
       'post_date' => '2015-06-12 12:04:08',
       'post_date_gmt' => '2015-06-12 00:04:08',
       'post_content' => '',
       'post_title' => 'Goal Pursuit in education using focused action research',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'goal-pursuit-in-education-using-focused-action-research',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-12 12:04:16',
       'post_modified_gmt' => '2015-06-12 00:04:16',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=448',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    6 =>
    WP_Post::__set_state(array(
       'ID' => 449,
       'post_author' => '1',
       'post_date' => '2015-06-12 12:05:55',
       'post_date_gmt' => '2015-06-12 00:05:55',
       'post_content' => '',
       'post_title' => 'Schooled for success - Halfmoon Bay School, Stewart Island',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'schooled-for-success-halfmoon-bay-school-stewart-island',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-12 12:05:58',
       'post_modified_gmt' => '2015-06-12 00:05:58',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=449',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    7 =>
    WP_Post::__set_state(array(
       'ID' => 450,
       'post_author' => '1',
       'post_date' => '2015-06-12 12:06:57',
       'post_date_gmt' => '2015-06-12 00:06:57',
       'post_content' => '',
       'post_title' => 'School Lines',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'school-lines-2',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-12 12:06:59',
       'post_modified_gmt' => '2015-06-12 00:06:59',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=450',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
    8 =>
    WP_Post::__set_state(array(
       'ID' => 451,
       'post_author' => '1',
       'post_date' => '2015-06-12 12:08:58',
       'post_date_gmt' => '2015-06-12 00:08:58',
       'post_content' => '',
       'post_title' => 'Growing Others',
       'post_excerpt' => '',
       'post_status' => 'publish',
       'comment_status' => 'closed',
       'ping_status' => 'closed',
       'post_password' => '',
       'post_name' => 'growing-others',
       'to_ping' => '',
       'pinged' => '',
       'post_modified' => '2015-06-12 12:09:47',
       'post_modified_gmt' => '2015-06-12 00:09:47',
       'post_content_filtered' => '',
       'post_parent' => 0,
       'guid' => 'http://localhost:8888/nzpf.ac.nz/?post_type=dsarticle&p=451',
       'menu_order' => 0,
       'post_type' => 'dsarticle',
       'post_mime_type' => '',
       'comment_count' => '0',
       'filter' => 'raw',
    )),
  ),
)
EOD;


// THIS MUNG IS NECESSARY TO MAKE THE var_export() STRING USABLE
$str = str_replace("WP_Post::__set_state", "(object)", $str);
$str = '$arr = ' . $str . ';';
eval($str);

// ACTIVATE THIS TO SEE THE ENTIRE TEST DATA SET
// print_r($arr);

/* ACTIVATE THIS TO SEE THE ARRAY KEYS
foreach ($arr as $key => $thing)
{
    echo PHP_EOL . $key;
}
*/


// INJECT An ISO-8601 SORT KEY INTO EACH OF THE ARRAYS OF OBJECTS
$rgx = '# Term \d{1} #i';
foreach ($arr as $key => $thing)
{
    // FROM: 2013 Term 1 March Issue; TO: 2013-March-1; TO: 2013-02-28
    $sort_key = $key;
    $sort_key = preg_replace($rgx, '-', $sort_key);
    $sort_key = str_replace(' Issue', '-1', $sort_key);
    $sort_key = date('Y-m-d', strtotime($sort_key));
    $arr[$key]['sort_key'] = $sort_key;
    $arr[$key]['data_key'] = $key;
}


// USORT CALLBACK FUNCTIONS TO SORT THE ARRAY BY THE ISO-8601 SORT KEY
function key_sort_ascending($a, $b)
{
    return ($a["sort_key"] < $b["sort_key"]) ? -1 : 1;
}
function key_sort_descending($a, $b)
{
    return ($a["sort_key"] > $b["sort_key"]) ? -1 : 1;
}


// SORT THE ARRAY IN DESCENDING DATES
usort($arr, 'key_sort_descending');

// RECONSTRUCT THE ARRAY WITH THE CORRECT KEYS
$new = [];
foreach ($arr as $key => $thing)
{
    // SAVE THE ORIGINAL KEY
    $data_key = $thing['data_key'];

    // REMOVE THE SORTING ARTIFACTS
	unset($thing['data_key']);
	unset($thing['sort_key']);

    // INJECT THE ORIGINAL DATE-RELATED KEY
    $new[$data_key] = $thing;
}


// SHOW THE WORK PRODUCT
print_r($new);

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Julian Hansen
Julian Hansen
Flag of South Africa image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Yeah, there are lots of ways to get to "nine."  3+6 = 5+2, etc.  The records were originally sorted in ascending order by date, so preserving that order may save some time, not sure about that.  But the amount saved is in the order of milliseconds, so this becomes the classic example of "something that should not be optimized."  You could run these exercises a few thousand times a day and it would only add up to a few seconds!
... not only the time taken but the complexity involved.

Why go and re-order an array so you can use one function when there is already another function that exists specifically to cater to this situation.

Many ways to get to 9 - sure but going (-12 + 20 - 6 + 1) * 3 is a bit complicated when you can go 3x3?

.... and  5 + 2 ?????
It's milliseconds; once it works, optimization does not matter.  And premature optimization (before the solution actually works) is a known anti-practice.  Cf: Knuth, "Computer Programming as an Art" published the same year he won the Turing Award.  Page 671.
https://en.wikiquote.org/wiki/Donald_Knuth

Not that there's anything wrong with your solution.
optimization vs code simplicity - is not measured in ms.

Objectively speaking in a teaching situation given the two solutions going forward - which one do you recommend?

The one that modifies the data to use a specific function
Or
The one that uses an existing function that will work on the unmodified data.

It boils down to that.
In the end I ended up using this solution which was an excellent one, although I found the answers from both @Ray Paseur and @Julian Hansen (JulianH) incredibly helpful and informative. Thank you you have both taught me allot on this topic :)

Based on @Julian Hansen (JulianH) example I created a compare function for descending also, thank you the code below does exactly what I needed:

// Custom compare array function for uksort ascending
function customCmp_asc($a, $b){

  $r = preg_match("/(\d+)\s+Term (\d) ([a-zA-Z]+)/", $a, $match1);
  $r = preg_match("/(\d+)\s+Term (\d) ([a-zA-Z]+)/", $b, $match2);
  if ($match1[1] < $match2[1]) return -1;
  if ($match1[1] > $match2[1]) return 1;
  if ($match1[2] < $match2[2]) return -1;
  if ($match1[2] > $match2[2]) return 1;
 
  return 0;

}

// Custom compare array function for uksort descending
function customCmp_desc($a, $b){

  $r = preg_match("/(\d+)\s+Term (\d) ([a-zA-Z]+)/", $a, $match1);
  $r = preg_match("/(\d+)\s+Term (\d) ([a-zA-Z]+)/", $b, $match2);
  if ($match1[1] > $match2[1]) return -1;
  if ($match1[1] < $match2[1]) return 1;
  if ($match1[2] > $match2[2]) return -1;
  if ($match1[2] < $match2[2]) return 1;
 
  return 0;

}
You are most welcome.