Latest 100 public snipts »
estupendos's
snipts
showing 1-4 of 4 snipts
-
∞ Cambiar un valor por otro en una base de datos MySQL
UPDATE wp_postmeta SET meta_value=(REPLACE (meta_value, '/home/.filofax/super45/super45.cl/images/', ''));
-
∞ Como hacer un listado de categorías en Wordpress, excluyendo algunas
<?php foreach((get_the_category()) as $cat) { if ($cat->cat_ID != "60" ) if ($cat->cat_ID != "70" ) if ($cat->cat_ID != "71" ) if ($cat->cat_ID != "72" ) { echo '<a href="/?cat=' . $cat->cat_ID . '"> ' . $cat->cat_name . '</a> '; } } ?>
-
∞ Loop para listar hijos de un page de Wordpress
<?php $paginas = get_pages('child_of=1'); ?> <?php foreach($paginas as $pagina): ?> <?php if (have_posts()) : ?> <?php query_posts("page_id=$pagina->ID"); ?> <?php while (have_posts()) : the_post(); ?> <?php the_content('Read the rest of this entry »'); ?> <?php endwhile; ?> <?php else : ?> <?php endif; ?> <?php wp_reset_query(); ?> <?php endforeach; ?>
-
∞ como crear un loop
<?php query_posts(array('category_name' => 'qwerty', 'posts_per_page' => 5)); if (have_posts()): while(have_posts()): the_post(): ?> // el contenido <?php else: ?> no existe nada <?php endif; endwhile; ?>


