• Hello,

    when i make a them child for thirteen, if i copy the category.php or single.php in my theme child directory i have an error

    fatal error: Call to undefined function twentythirteen_paging_nav() in C:\wamp\www\wordpress\wp-content\themes\mytheme\category.php

    i have tried many things but nothing worked. If i remove the function, it works but i have no paging…

    Can you help me, please?

    Thanx.

Viewing 3 replies - 16 through 18 (of 18 total)
  • Thread Starter Kins

    (@kins)

    To do changes.

    But if it doesnt work why should i continue???

    It’s interesting to know why it doesn’t work…

    In my final purpose i’ll have this:

    this

    But the problem stay the same.

    Thread Starter Kins

    (@kins)

    Hello.

    I have found nothing till now…

    Anyone to help please?

    Hi, had the same issue and a copied some code from default template.
    The function was part of the Loop.
    I found it with grep -r twentyfourteen_paging_nav * in terminal.

    if ( have_posts() ) :
        // Start the Loop.
        while ( have_posts() ) : the_post();
    
            /*
             * Include the post format-specific template for the content. If you want to
             * use this in a child theme, then include a file called called content-___.php
             * (where ___ is the post format) and that will be used instead.
             */
            get_template_part( 'content', get_post_format() );
    
        endwhile;
        // Previous/next post navigation.
        twentyfourteen_paging_nav();
    
    else :
        // If no content, include the "No posts found" template.
        get_template_part( 'content', 'none' );
    
    endif;
Viewing 3 replies - 16 through 18 (of 18 total)
  • The topic ‘twentythirteen_paging_nav(); problem’ is closed to new replies.