Jump to content
  • 0

Переименование кнопки)


vitaxastifler
 Share

Question

Парни,поставил тему,верстаю её под себя...

Но проблема моя в том что не получается переименовать кнопку

Вот собственно скрин...

11_240.jpgi.gif
 
Через поиск в PHP шторме,я задавал "ДАЛЕЕ",результаты мне выводят коментарий кода,а саму кнопку переименовать не получается(
Подскажите что то.Спасибо
12_240.jpgi.gif
 
Edited by vitaxastifler
Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

Ищите в папке с темой (wp-content/themes/yourTheme). На практике выяснил что Total commander ищет лучше, попробуйте через него поискать(alt+f7). Но в принципе в WP всё разбито на шаблоны. Вы url скрыли, если это главная страница смотрите index.php, если просто страница page.php, если запись - single.php и т.д.

  • Like 1
Link to comment
Share on other sites

  • 0

Ищите в папке с темой (wp-content/themes/yourTheme). На практике выяснил что Total commander ищет лучше, попробуйте через него поискать(alt+f7). Но в принципе в WP всё разбито на шаблоны. Вы url скрыли, если это главная страница смотрите index.php, если просто страница page.php, если запись - single.php и т.д.

Спасибо поискал и так,но что в индексе что в сингле нету "далее"

А тотал находит тоже что и шторм(

Я в шоке,как так?

Link to comment
Share on other sites

  • 0
 

Давайте по порядку разбираться. Это у вас стандартная запись на скрине? (если выводите через какой то плагин то возможно придётся править файл локализации).

Edited by jdk
  • Like 1
Link to comment
Share on other sites

  • 0

jdk это главная страница  index.php

Я сделал так что бы на главно стр выводились посты из рубрики "Новости" по id 6

 

 
  <div id="content" class="pagecolumn">        <?php        /**         * Template name: Новости // имя шаблона страницы         */        if ( have_posts() ) :            query_posts('cat=6');              while (have_posts()) : the_post();                  ?>                <li class="map"><h2><?php the_title(); ?></h2><?php the_post_thumbnail(); ?><p><?php echo get_the_excerpt(); ?></p></li>            <?php            endwhile;            print '</ul></body></html>';        endif;        wp_reset_query();  /* Сбрасываем нашу выборку. */        ?>    </div>
Edited by vitaxastifler
Link to comment
Share on other sites

  • 0

ок. если вам не понятно, то смотрете аналогичный метод, . http://wp-kama.ru/function/get_extended

 

Я правильно понял - под цитатой - вы понимаете анонс статьи??? если да, то ссылку читайте

  • Like 1
Link to comment
Share on other sites

  • 0

Попробуйте так:

 <li class="map"><h2><?php the_title(); ?></h2><?php the_post_thumbnail(); ?><p><?php the_excerpt(''); // Выводим анонс ?></p></li>

А в functions.php

//определяем кол-во символов в анонсе (по умолчанию 50)function new_excerpt_length($length) {	return 32;}add_filter('excerpt_length', 'new_excerpt_length');//Заменяем текст + делаем его ссылкойfunction new_excerpt_more_more($more) {	   global $post;	return '<a href="'. get_permalink($post->ID) . '">Читать дальше...</a>';}add_filter('excerpt_more', 'new_excerpt_more_more');
  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy