Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)
  • I would like one button like widget or shortcode only visible for logged users. that’s will be great!

    Thread Starter zinc1314

    (@zinc1314)

    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!

    Thread Starter zinc1314

    (@zinc1314)

    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.

    Thread Starter zinc1314

    (@zinc1314)

    I’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

    Thread Starter zinc1314

    (@zinc1314)

    Here 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 random
    Thread Starter zinc1314

    (@zinc1314)

    sorry, 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?

    Thread Starter zinc1314

    (@zinc1314)

    sorry, i take other option. thanks anyway!

Viewing 7 replies - 1 through 7 (of 7 total)