← WordPress

[wordpress] Plugins essenciais!

Lida 92579 vezes

Offline

andre_mz 
Membro
Mensagens 688 Gostos 0
Feedback +3

Troféus totais: 25
Trófeus: (Ver todos)
Super Combination Combination Topic Starter Poll Voter Level 5 Level 4 Level 3 Level 2 Level 1 500 Posts

Estava a falar mesmo na Home Page, mas esquece, acho que isso até pelo código php dá. ;)
Offline

nram 
Membro
Mensagens 777 Gostos 0
Feedback +1

Troféus totais: 28
Trófeus: (Ver todos)
Super Combination Combination Topic Starter 10 Poll Votes Poll Voter Level 5 Level 4 Level 3 Level 2 Level 1

Alguém sabe de um plugin que faça de "linkbar" mas no topo? Em vez de ir adicionar código à pata, um plugin que adicione os links que eu queira no topo da página... (género blogroll) mas horizontal e no topo.
Offline

Stawl 
Membro
Mensagens 10 Gostos 0
Troféus totais: 19
Trófeus: (Ver todos)
Super Combination Combination Topic Starter Level 4 Level 3 Level 2 Level 1 10 Posts First Post Karma

Grande tópico sim senhor! Estou a iniciar-me em wp, já vou utilizar alguns dai  :obrigado:
Offline

Riey 
Membro
Mensagens 1001 Gostos 0
Feedback +4

Troféus totais: 30
Trófeus: (Ver todos)
Apple User Super Combination Combination Topic Starter 10 Poll Votes Poll Voter Poll Starter Level 5 Level 4 Level 3

Boas, alguém sabe o melhor plugin para posts relacionados?
Offline

Celso Azevedo 
Membro
Mensagens 3500 Gostos 38
Feedback +12

Troféus totais: 32
Trófeus: (Ver todos)
Level 6 Tenth year Anniversary Super Combination Combination Topic Starter 10 Poll Votes Poll Voter Level 5 Level 4 Level 3

Boas, alguém sabe o melhor plugin para posts relacionados?
Para posts relacionados em links, utilizo este: http://wordpress.org/extend/plugins/yet-another-related-posts-plugin/

Para posts relacionados com imagens (miniaturas) utilizo este: http://www.linkwithin.com/learn
Offline

Riey 
Membro
Mensagens 1001 Gostos 0
Feedback +4

Troféus totais: 30
Trófeus: (Ver todos)
Apple User Super Combination Combination Topic Starter 10 Poll Votes Poll Voter Poll Starter Level 5 Level 4 Level 3

Para posts relacionados em links, utilizo este: http://wordpress.org/extend/plugins/yet-another-related-posts-plugin/

Para posts relacionados com imagens (miniaturas) utilizo este: http://www.linkwithin.com/learn

obrigado.

instalei o LinkWithin, às vezes aparece em lista, outras vezes com imagens o.o

não dá para retirar o "LinkWithin" de lá?
Offline

Pedro Lopes 
Beta tester
Mensagens 3568 Gostos 18
Feedback +6

Troféus totais: 32
Trófeus: (Ver todos)
Level 6 Windows User Super Combination Combination Topic Starter 10 Poll Votes Poll Voter Level 5 Level 4 Level 3

Eu fiz o meu proprio com miniaturas. Mas não é o melhor...

O "yet another bla bla" tentei activa-lo mas dava-me sempre erro. :/

Depois vou tentar esse segundo tambem. Obrigado :P
Offline

Fernando Augusto 
Membro
Mensagens 922 Gostos 0
Feedback +1

Troféus totais: 30
Trófeus: (Ver todos)
Linux User Mobile User Windows User Super Combination Combination Topic Starter Poll Voter Level 5 Level 4 Level 3

Eu no mais-sites utitlizo isto

no php do post
Código: [Seleccione]
                    <h4>Conteúdo Relacionado</h4>
                    <?php $container ar_related('4','thumbs'); echo $container['related']; $post $container['post']; ?>
                </div>
            <?php while (have_posts()) : the_post(); ?>

e no funcionts do tema

Código: [Seleccione]
//Related post by category
function ar_related($limit=NULL,$type=NULL){
    global $post;
    $current_post = $post;
    $current_post_id = $post->ID;
    if(!$limit){
        $limit = 4;
    }
    $upper_limit = $limit * 2;
    $i = 0;
    foreach((get_the_category($post->ID)) as $category) {
        $related_cats[$i] = $category->cat_ID;
        $i++;
    }
    if($i > 1){
        shuffle($related_cats);
    }
    $related_cats = implode(',',$related_cats);
    if($related_cats){
        $related_query = new WP_Query("cat=$related_cats&showposts=$upper_limit");
        $i =0;
        while ($related_query->have_posts()) :
            $related_query->the_post();
            if($post->ID != $current_post_id){
                if($type == "thumbs"){
                    if(get_post_meta($post->ID, "post-image", $single = true)){
                        $related_posts[$i] = '<a href="'.get_permalink().'"><img src="'.get_bloginfo('template_url').'/scripts/timthumb.php?src='.get_post_meta($post->ID, "post-image", $single = true).'&amp;h=115&amp;w=115&amp;zc=1" style="float:left; width:115px; height:115px; margin:5px 12px; padding:2px; border:1px solid #e7e7e7;" alt="'.get_the_title().' - Thumbnail" title="'.get_the_title().' - Thumbnail"></a>';
                    }
                }
                else{
                    $related_posts[$i] = '<li><a href="'.get_permalink().'">'.get_the_title().'</a></li>';
                }
                $i++;
            }
        endwhile;
        if($i > 1){
            shuffle($related_posts);
        }
        $i = 0;
        while($i < $limit){
            $output .= $related_posts[$i];
            $i++;
        }
        if(count($related_posts) <= 1){
            $output = "<span style=\"color:#555; font-style:italic;\">This is the first post in this category. <a href=\"".get_bloginfo('rss2_url')."\">Subscribe to the RSS feed</a> to find out when more content is added.</span>";
        }
        else{
            $output.='<div class="clear"></div>';
        }
    }
    $post = $current_post;
    $container['related'] = $output;
    $container['post'] = $post ;
    return $container;
}
Offline

Riey 
Membro
Mensagens 1001 Gostos 0
Feedback +4

Troféus totais: 30
Trófeus: (Ver todos)
Apple User Super Combination Combination Topic Starter 10 Poll Votes Poll Voter Poll Starter Level 5 Level 4 Level 3

obrigado killer999
Offline

Fernando Augusto 
Membro
Mensagens 922 Gostos 0
Feedback +1

Troféus totais: 30
Trófeus: (Ver todos)
Linux User Mobile User Windows User Super Combination Combination Topic Starter Poll Voter Level 5 Level 4 Level 3

De nada, estamos aqui todos para o mesmo
Offline

designarts 
Membro
Mensagens 23 Gostos 0
Troféus totais: 16
Trófeus: (Ver todos)
Super Combination Combination Topic Starter Level 3 Level 2 Level 1 10 Posts First Post Karma Seventh year Anniversary

alguem sabe onde posso encontrar um plugin que dê para fazer downloads? Por exemplo neste link tem um que eu gostaria de ter no meu blog.  ( Download flickrRSS.zip )

http://eightface.com/wordpress/flickrrss/
Offline

Pedro Lopes 
Beta tester
Mensagens 3568 Gostos 18
Feedback +6

Troféus totais: 32
Trófeus: (Ver todos)
Level 6 Windows User Super Combination Combination Topic Starter 10 Poll Votes Poll Voter Level 5 Level 4 Level 3

alguem sabe onde posso encontrar um plugin que dê para fazer downloads? Por exemplo neste link tem um que eu gostaria de ter no meu blog.  ( Download flickrRSS.zip )

http://eightface.com/wordpress/flickrrss/
http://lesterchan.net/wordpress/readme/wp-downloadmanager.html
Offline

designarts 
Membro
Mensagens 23 Gostos 0
Troféus totais: 16
Trófeus: (Ver todos)
Super Combination Combination Topic Starter Level 3 Level 2 Level 1 10 Posts First Post Karma Seventh year Anniversary

Obrigado Pedro Lopes parece ser uma boa opção mas eu não vi aquela "caixa zip" no plugin que tu mencionas.te. Este plugin é o mesmo que o do website que mencionei como exemplo?



Abraço.  :cool:

Offline

Pedro Lopes 
Beta tester
Mensagens 3568 Gostos 18
Feedback +6

Troféus totais: 32
Trófeus: (Ver todos)
Level 6 Windows User Super Combination Combination Topic Starter 10 Poll Votes Poll Voter Level 5 Level 4 Level 3

O site que mencionaste não está a usar o WordPress.

http://wordpress.org/extend/plugins/search.php?q=download
Offline

designarts 
Membro
Mensagens 23 Gostos 0
Troféus totais: 16
Trófeus: (Ver todos)
Super Combination Combination Topic Starter Level 3 Level 2 Level 1 10 Posts First Post Karma Seventh year Anniversary

é que eu n o encontro! :-k