Latest 100 public
snipts » dubo
showing 1-3 of 3 snipts for dubo
-
∞ 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; ?>


