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.
<!-- start sidebar one -->
<div id="sidebar1" class="sidebar">
<ul>
<?php /* Widgetized sidebar, if you have the plugin installed. */
if ( function_exists('dynamic_sidebar') && dynamic_sidebar(2)) : else : ?>
<li>
<h2>
<?php _e('Недавно'); ?>
</h2>
<ul>
<?php get_archives('postbypost', '10', 'custom', '<li>', '</li>'); ?>
</ul>
</li>
<?php endif; ?>
</ul>
</div>
<!-- end sidebar one -->
Открой index.php, найди там кусок типа такого:
и вставь его в single.phpPHP:<!-- start sidebar one --> <div id="sidebar1" class="sidebar"> <ul> <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(2)) : else : ?> <li> <h2> <?php _e('Недавно'); ?> </h2> <ul> <?php get_archives('postbypost', '10', 'custom', '<li>', '</li>'); ?> </ul> </li> <?php endif; ?> </ul> </div> <!-- end sidebar one -->