X

Como substituir palavras-chave em the_content e the_excerpt

Snippets by IsItWP

Você está procurando uma maneira de substituir palavras-chave em the_content e the_excerpt usando uma matriz associativa? Embora provavelmente exista um plug-in para isso, criamos um trecho de código rápido que você pode usar para substituir palavras-chave em the_content e the_excerpt no WordPress.

Instruções:

Tudo o que você precisa fazer é adicionar esse código ao arquivo functions.php do seu tema ou em um plug-in específico do site:

function replace_text_wps($text){
	$replace = array(
		// 'WORD TO REPLACE' => 'REPLACE WORD WITH THIS'
		'wordpress' => '<a href="#">wordpress</a>',
		'excerpt' => '<a href="#">excerpt</a>',
		'function' => '<a href="#">function</a>'
	);
	$text = str_replace(array_keys($replace), $replace, $text);
	return $text;
}

add_filter('the_content', 'replace_text_wps');
add_filter('the_excerpt', 'replace_text_wps');

Observação: Se esta é a primeira vez que você adiciona trechos de código no WordPress, consulte nosso guia sobre como copiar/colar corretamente trechos de código no WordPress, para não danificar seu site acidentalmente.

Se você gostou desse snippet de código, considere dar uma olhada em nossos outros artigos no site, como: 19 melhores plug-ins do WordPress para fotógrafos e como aumentar o tamanho máximo de upload de arquivos no WordPress.

Comentários   Deixe uma resposta

  1. Hello, made an alteration of it like this but can’t get any effect:

    function replace_text_wps($text){
    $replace = array(
    // ‘WORD TO REPLACE’ => ‘REPLACED WITH THIS’
    ‘spicy’ => ”,
    ‘veryspicy’ => ”
    );
    $text = str_replace(array_keys($replace), $replace, $text);
    return $text;
    }

    add_filter(‘the_content’, ‘replace_text_wps’);

    I added this in the end of the theme functions.php but I can’t get any effect.

  2. WordPress Arena: A Blog for WordPress Developers, Designers and Blogger agosto 27, 2011 em 4:01 pm

    […] code is courtesy of Kevin Chard from WpSnipp, and we should be thankful to […]

  3. The Best way to replace words in your posts # WordPress Tricks & Tips abril 4, 2011 em 8:45 am

    […] On the code above using add_filter to filter the_content and the_excerpt. So all match words will be replace with the new parameter as described. That’s is, we hope this tutorial works on you. Thanks Kevin Chard from WP Snipp for this code […]

  4. Kako automatski zameniti izraze | WPSavetnik março 18, 2011 em 1:52 pm

    […] odlomak koda preuzet je sa sajta wpsnipp.com, odli?ne kolekcije PHP caka i trikova za […]

  5. You have to be careful of this if you intend to use those keywords on an image caption, as it seems to break the caption. That’s too much of a drawback for me to use on common keyword, but otherwise this is really great. I’ll certainly find a use for this. Thanks!

    1. Hi Sean, yes this is true it will replace any text, but I’m glad you like the snippet. I’m sure that I will update it in the future to be a little more practical.

  6. If the word already is in a link, it will be some problems. My best, and simplest, solution for that is to replace eg. ‘ wordpress ‘ so that every appearence of wordpress with spaces on each side will be replaces.

    1. Hi Slowmove, this is true and is something people should take into consideration when using this snippet. Thanks for the suggestion this would work great for some instances. I may have to post an updated version in the future.

Adicionar um comentário

Ficamos felizes por você ter optado por deixar um comentário. Lembre-se de que todos os comentários são moderados de acordo com nossa política de privacidade, e todos os links são nofollow. NÃO use palavras-chave no campo do nome. Vamos ter uma conversa pessoal e significativa.

WordPress Launch Checklist

A lista de verificação definitiva para o lançamento do WordPress

Compilamos todos os itens essenciais da lista de verificação para o lançamento de seu próximo site WordPress em um ebook prático.
Sim, envie-me o livro eletrônico gratuito grátis!