zinc1314
Forum Replies Created
-
Forum: Reviews
In reply to: [Let Them Unsubscribe] Works Great!I would like one button like widget or shortcode only visible for logged users. that’s will be great!
Forum: Reviews
In reply to: [Let Them Unsubscribe] Now work!!Por cierto, dice que es compatible hasta la versión 3.4.2. ?Es cierto eso? ufff si es así deberías actualizarlo bastante xD Un saludo y gracias por el aporte en cualquier caso!
Forum: Reviews
In reply to: [Let Them Unsubscribe] Now work!!Ignacio, creo que hablas castellano verdad? Más que nada por el nombre jejeje Pues sinceramente como dices no lo recuerdo bien, son demasiados proyectos en el tiempo que ha pasado, aún así, si puedo quitaré el comentario y la puntuación. Quizá lo pruebe de nuevo en breve porque me interesa bastante, aunque ya sería con WordPress 3.8.
Forum: Plugins
In reply to: array terms of taxonomy in wordpressI’m trying everything. Finally i found the correct answer browsing in google after a lot of hours. The solution for everyone is:
<?php $terms = wp_get_post_terms($post->ID,'agencia'); $count = count($terms); if ( $count > 0 ){ echo "<span>"; foreach ( $terms as $term ) { echo $term->name . "<comma>, </comma>"; } echo "</span>";} ?>
I created for delete the last comma with css:last-child
Forum: Plugins
In reply to: facebook shortcode with classHere work it!
// shortcode [facebook] function mostrar_facebook($atts, $content = null) { extract(shortcode_atts(array('link' => '#','mostrar' => 'SI'), $atts)); return '<div id="divminiright" class="' .$mostrar. '"><a href="' .$link. '" target="_blank"><div id="minifacebook"></div>' . do_shortcode($content) . '</a></div>'; } add_shortcode('facebook', 'mostrar_facebook');
Forum: Plugins
In reply to: post randomsorry, i have this code now
<?php $home_query = new WP_Query("cat=&showposts=8&orderby=rand"); $i = 0; ?> <?php while ($home_query->have_posts()) : $home_query->the_post(); $do_not_duplicate = $post->ID; $i++; ?>
But with AStickyPostOrderER plugin, make random but only with sticky category.
Some solution?
Forum: Hacks
In reply to: Delete post of user with buttonsorry, i take other option. thanks anyway!