Strona 1 z 1

Syntax error w pliku page.php przy naprawie funkcji "Czytaj więcej"

: 12 mar 2017, 13:27:05
autor: slopiewnie
Witam.

Próbuję naprawić funkcję "Czytaj więcej" zgodnie z instrukcją z tej strony:

https://wpninja.pl/artykuly/koniec-z-ig ... nika-more/

Zrobiłem to, ale w linijce 21 wywala error:

Parse error: syntax error, unexpected '<' in /profiles/s/sl/slo/slopiewnie/slopiewnie.cba.pl/wp-content/themes/twentysixteen/page.php on line 21

Wklejam zawartość pliku page.php

POCZĄTEK


<?php
/**
* The template for displaying pages
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages and that
* other "pages" on your WordPress site will use a different template.
*
* @package WordPress
* @subpackage Twenty_Sixteen
* @since Twenty Sixteen 1.0
*/

get_header(); ?>

<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php
// Start the loop.
while ( have_posts() ) : the_post();
<?php global $more; $more = 0; ?>
// Include the page content template.
get_template_part( 'template-parts/content', 'page' );

// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) {
comments_template();
}

// End of the loop.
endwhile;
?>

</main><!-- .site-main -->

<?php get_sidebar( 'content-bottom' ); ?>

</div><!-- .content-area -->

<?php get_sidebar(); ?>
<?php get_footer(); ?>

KONIEC

Możecie spojrzeć i poprawić, bo sam nie daję rady.

Syntax error w pliku page.php przy naprawie funkcji "Czytaj więcej"

: 12 mar 2017, 20:33:22
autor: endriu888
Witam!

Czy może Pan powiedzieć, gdzie ten błąd się pokazuje? bo na stronie głównej nie widzę takiego błędu.

może Pan spróbować tego pluginu: https://wordpress.org/plugins/wp-show-more/

Syntax error w pliku page.php przy naprawie funkcji "Czytaj więcej"

: 13 mar 2017, 09:58:06
autor: lumat1
Witam
Wystarczy zmienić 21 linię z

Kod: Zaznacz cały

<?php global $more; $more = 0; ?>
na

Kod: Zaznacz cały

global $more; $more = 0; 
Pozdrawiam serdecznie
Łukasz
Obsługa CBA

Syntax error w pliku page.php przy naprawie funkcji "Czytaj więcej"

: 13 mar 2017, 11:01:27
autor: slopiewnie
Dzięki.