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 get_header(); ?>
<?php get_sidebar(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2 class="headline"><?php the_title(); ?></h2>
<div class="entry">
<?php the_content('<p class="serif">Read the rest of this entry »</p>'); ?>
[B]<div class="reklama"><a href="урл страницы"><?php the_title(); ?></a></div>[/B]
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
</div>
</div>
<?php endwhile; else: ?>
<p>Такой страницы не существует.</p>
<?php endif; ?>
<?php get_footer(); ?>
<?php
//Plugin Name: Реклама в начале поста
function post_ad($post){
return '<div>reklama</div>'.$post;
}
add_filter('the_content', 'post_ad', 1);
?>
Для этого не обязательно заливать как плагин, можно добавить этот код в functions.php вашей темы.код плагина показывает рекламу в начале поста
PHP:<?php //Plugin Name: Реклама в начале поста function post_ad($post){ return '<div>reklama</div>'.$post; } add_filter('the_content', 'post_ad', 1); ?>
Для просмотра ссылки ВойдиСпасибо за ответы, но в примерах просто див вставляется я так понял. А как сделать, чтобы анкор ссылки к примеру был одинаков с названием поста?
<div class="reklama"><a href="урл страницы"><?php the_title(); ?></a></div>
А вот и существует. Причём с очень гибкими настройками.Такого плагина в природе не существует, 99%.