if (in_category($cat_id_detskie_tovary, $post->ID)) {
// это детские товары, тут делаем то что надо для них
} else {
// это не детские товары, тут делаем то что надо для них
// а именно, как и раньше выводим блок с сопутствующими товарами
}
<script>alert('');</script>
первой строкой в файле лишний.echo "<script>alert('".$path."');</script>";
<button type=\"submit\" class=\"next\" value=5 name=\"step\" class="to-top">Далее</button>
<script>
$(\".to-top\").click(function() {
$(\"html, body\").animate({ scrollTop: 0 }, \"slow\");
return false;
});
</script>
<?php query_posts("cat=10&posts_per_page=3"); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="first-news clearfix">
<div class="big-miniature"></div>
<div class="data"><?php the_time('j F Y') ?></div>
<h2><a href="<?php echo get_permalink(); ?>"><?php the_title(); ?></a></h2>
<p class="text">
<? $excerpt = get_the_excerpt();
print string_limit_words($excerpt,65);?>
</p>
</div>
<?php endwhile; ?>
<?php query_posts("cat=10&posts_per_page=3"); ?>
<?php
$idx = 1;
while (have_posts()) : the_post(); ?>
<? if( $idx % 2 == 1) { /* выводим нечетные статьи*/ ?>
<div class="first-news clearfix">
<div class="big-miniature"></div>
<div class="data"><?php the_time('j F Y') ?></div>
<h2><a href="<?php echo get_permalink(); ?>"><?php the_title(); ?></a></h2>
<p class="text">
<? $excerpt = get_the_excerpt();
print string_limit_words($excerpt,65);?>
</p>
</div>
<? } else { /* выводим четные */?>
<div class="first-news clearfix">
<div class="data"><?php the_time('j F Y') ?></div>
<h2><a href="<?php echo get_permalink(); ?>"><?php the_title(); ?></a></h2>
<p class="text">
<? $excerpt = get_the_excerpt();
print string_limit_words($excerpt,65);?>
</p>
<div class="big-miniature"></div>
</div>
<? } ?>
<?php
$idx++;
endwhile;
?>
function post_exists_by_name($name, $content = '', $date = '') {
global $wpdb;
$post_name = wp_unslash( sanitize_post_field( 'post_name', $name, 0, 'db' ) );
$post_content = wp_unslash( sanitize_post_field( 'post_content', $content, 0, 'db' ) );
$post_date = wp_unslash( sanitize_post_field( 'post_date', $date, 0, 'db' ) );
$query = "SELECT ID FROM $wpdb->posts WHERE 1=1";
$args = array();
if ( !empty ( $date ) ) {
$query .= ' AND post_date = %s';
$args[] = $post_date;
}
if ( !empty ( $name ) ) {
$query .= ' AND post_name = %s';
$args[] = $post_name;
}
if ( !empty ( $content ) ) {
$query .= 'AND post_content = %s';
$args[] = $post_content;
}
if ( !empty ( $args ) )
return (int) $wpdb->get_var( $wpdb->prepare($query, $args) );
return 0;
}
$post_exists = post_exists_by_name( $post['post_name'], '', $post['post_date'] );
$post_exists = post_exists_by_name( $post['post_name] );
if (is_user_logged_in()) {
$blog_u1_ID = ??? // your u1.mywp.ru blog id
global $current_user;
get_currentuserinfo();
if (is_user_member_of_blog( $current_user->ID, $blog_u1_ID)) {
echo "Current user is a member of blog u1"
};
}
$someVar = '';
foreach ( $myposts as $post ) {
setup_postdata( $post );
$someVar .= (get_post_meta( $post->ID, 'my_key', true )."; ");
}
if (page-landing.php)
wp_nav_menu( array('menu' => 'Header Menu' ));
else
wp_nav_menu( array('menu' => 'Blog Menu' ));
register_nav_menus(
array(
'header-menu' => __('Header Menu'),
'blog-menu' => __('Blog Menu')
)
);
$sql = ("UPDATE eroddondon SET title='".$_POST["title"]."', content='".$_POST["content"]."' WHERE id=1");
$res = mysql_query($sql, $link);
if($res) {
...