Make WordPress Core

Ticket #39685: 39685.patch

File 39685.patch, 464 bytes (added by poena, 5 years ago)

Adds wp_link_pages to content-front-page.php

  • content-front-page.php

     
    4343                                                        get_the_title()
    4444                                                )
    4545                                        );
     46
     47                                        wp_link_pages(
     48                                                array(
     49                                                        'before' => '<div class="page-links">' . __( 'Pages:', 'twentyseventeen' ),
     50                                                        'after'  => '</div>',
     51                                                )
     52                                        );
    4653                                        ?>
    4754                        </div><!-- .entry-content -->
    4855