Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author caterhamcomputing

    (@caterhamcomputing)

    Hi.

    Thank you for your enquiry.

    At present, there is not a way to re-arrange the elements.

    I have been thinking about implementing a simple templating system for a little while now.

    I’d intent this to be available in the next release, but can’t say when I will have the time to put it together and get it tested.

    Plugin Author caterhamcomputing

    (@caterhamcomputing)

    You can now achieve this using WordPress filters … add the following to your theme’s functions.php:

    function custom_ccchildpage_inner_template($template) {
    $template = '<div class="ccchildpage {{page_class}}">{{thumbnail}}<h3{{title_class}}>{{title}}</h3>{{excerpt}}{{more}}</div>';
    return $template;
    }
    add_filter( 'ccchildpages_inner_template' ,'custom_ccchildpage_inner_template' );

    This will change the output of the plugin on all pages.

    I intend to create full documentation for the available filters soon, and at a later stage will implement ways of accessing some of them via the WordPress dashboard.

    I hope that this helps.

    [ Signature moderated ]

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Moving Child Page Titles Below Thumbnail Picture’ is closed to new replies.