Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
<?php the_content(''); ?>
<?php the_excerpt(); ?>
<?php
/**
* Front to the WordPress application. This file doesn't do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define('WP_USE_THEMES', true);
/** Loads the WordPress Environment and Template */
require('./wp-blog-header.php');
?>
Какой шаблон используется на вашем блоге?
Желательно ссылку на скачивание или в аттач.
Это не тот index.phpда примерно так когда публикую новость отображается вся новость целиком даже если в ней 100 строк а я хотел бы чтоб к примеру 3-4 строки и не больше был анонс и если читатилю новость понравилась и он хочет прочесть целиком может перейти на полную новость
таких строк в index.php не нашел вот что у меня в index.php
PHP:<?php /** * Front to the WordPress application. This file doesn't do anything, but loads * wp-blog-header.php which does and tells WordPress to load the theme. * * @package WordPress */ /** * Tells WordPress to load the WordPress theme and output it. * * @var bool */ define('WP_USE_THEMES', true); require('./wp-blog-header.php'); ?>
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?>
<?php the_excerpt(); ?>