Languages: English • 日本語 Português do Brasil • (Add your language)
Plugins são compostos de scripts PHP que adicionam funcionalidades para o seu blog. Eles oferecem novas adições ao seu blog que de outra forma não seriam possíveis.
Plugins estendem a funcionalidade do WordPress. A maioria dos usuários do WordPress não necessitam de plugins, ou necessitam de apenas alguns, como lidar com spam. Plugins de comentários ou postagens, de anúncios personalizados e outros. Outros usuários desfrutam das variadas opções de Plugins disponíveis, como previsões meteorológicas, afixar contagens das palavras, sistemas de classificação, e muito mais. A escolha de Plugins é vasta, e escolhidos com base nas necessidades do usuário, eles não são incorporados ao núcleo do WordPress.
Plugins WordPress são projetados por voluntários e são geralmente gratuitos para o público. Plugins listados nas fontes abaixo têm sido exaustivamente testados e considerados "seguros".
Mas lembre-se, Plugins são da responsabilidade do autor e do usuário, e eles geralmente são obras em andamento como WordPress, que cresce e se expande.
Artigo parcialmente traduzido ou que precisa de tradução Este documento está parcialmente traduzido ou precisa ser traduzido. Toda a tradução é feita por voluntários e você pode ser um deles.
Participar ▪ Artigos para traduzir ▪ Fórum de Suporte ▪ Todos os Artigos |
Existe uma lista de plugins WordPress, e links para outros repositórios, em Plugins.
A documentação do WordPress em Português do Brasil.
Todas as comunidades lusófonas também são bem-vindas! Adicione {{Codex-pt}} em seus artigos. |
WordPress Plugin Compatibility indice de plugins compatíveis com várias versões do WordPress.
Não são todos os Plugins que são de instalação fácil, mas os autores dos plugins e desenvolvedores devem tornar o processo mais fácil possível. Nos temos que incluir mais informações detalhadas de como instalar Plugins a seguir, bem como algumas coisas que você precisa saber antes de instalar o seu plugin.
Tem algumas coisas que você precisa saber antes de iniciar a instalação de um plugin WordPress.
Existem várias versões do WordPress atualmente disponíveis, e diferentes Plugins disponíveis em diferentes versões. Certifique-se de ler todas as informações com cuidado para garantir que o plugin irá funcionar com a versão do seu WordPress, ou verifique Plugins/Plugin_Compatibility. Se não, considere upgrading.
Para instalação de um plugin que não esta no "plugin browser", a instalação manual é o caminho a ser seguido. Siga as instruções fornecidas pelo autor do Plugin. Lembre-se: faça BACKUP.
Some plugins feature tags inside of the template files. If the plugin is not activated, it will "break" the Theme and it may report errors or fail to load. It is therefore imperative to prevent the plugin from being detected in case it is turned off.
To detect if a plugin is installed, you can use a simple function_exists() check. The if (function_exists()) checks for the plugin, and if it exists, it will use it. If it returns FALSE or "not found", it will ignore the plugin tag and continue loading the page.
<?php if (function_exists('FUNCTION NAME')) { FUNCTION_NAME(); } ?>
This example plugin uses a function called jal_get_shoutbox() to print out its contents.
<?php if (function_exists('jal_get_shoutbox')) { jal_get_shoutbox(); } ?>
Se você está tendo problemas com um plugin que você instalou ou parou de funcionar após uma atualização, estes são os seguintes passos que você precisa tomar para solucionar alguns desses problemas:
Some plugins may become outdated and no longer work with the newer version of WordPress. If you have issues after activating a plugin, deactivate it and visit the Plugin's website to see if a newer version is available.
Many plugin authors will upgrade their plugins to accommodate the newer version, but some either won't, or their plugin becomes obsolete with the improvements in WordPress.
Plugins are managed from the Plugins Panel in the Administration Panels of your WordPress site. All plugins listed on this screen are found in your wp-content/plugins directory. Each plugin has a description of what it does, an author and website to refer to, and a version number. If you do not see the plugin on the list, it is because it is missing the "header":
<?php /* Plugin Name: Magic Plugin Plugin URI: http://example.com/magic-plugin Description: Magic Plugin performs magic Version: 2.3 Author: Mr. Magic Author URI: http://example.com/ */
You can add this information yourself by opening the plugin in a text editor and adding the above "comment", changing the information as follows:
If your plugin requires changes to the WordPress code or your template files, you will need to enact or reverse those changes each time you activate or deactivate your plugin. Failing to do this will likely result in errors. There is also a link provided below the list of Plugins that allows you to activate All Plugins.
While Plugins are very useful, some Plugins just don't meet your needs, or you've stopped using them for some reason, or they just don't work. After deactivating the Plugin stops the Plugin's behavior, they tend to pile up in your Plugins panel, making your plugin list long and cumbersome to scroll through. If left there long enough, they might become obsolete with the new WordPress versions and cause problems if you decide to use them in the future.
Begin your Plugins housekeeping by visiting the plugin author's site to see if there are instructions on how to uninstall the plugin via the Plugins panel on the left side of the screen. Some plugins require adding tags and code to your Template files while others require modification of the WordPress administration files. Be sure and read through the plugin's uninstall instructions to remove each of these modifications so your site will not have errors when the plugin is turned off.If no specific instructions for uninstalling exist, then read through the installation instructions to check for modifications, if applicable, and reverse their changes, if implemented. If it has been a long time since you used this plugin, you still might have left its modifications in your template files and forgotten them. Carefully remove them.
To remove a plugin, make sure the plugin is deactivated from the Plugins panel. Go to your website's wp-content/plugins folder (usually with an FTP program) and look for the file name of the plugin you want to remove. Select the file name and delete it.
If have your WordPress site on your hard drive, open the wp-content/plugins folder on your site and find the file name of the plugin you want to delete, select it and delete it. This way, if you have to restore or copy your Plugin folder to your website, you won't restore the unwanted plugin on your site.
If your theme relies on one or more plugins in order to correctly function, you may be interested in Jonathan Leighton's article explaining how to set up plugin dependencies.
Once you start using WordPress Plugins, you sometimes wonder how you ever got along without them. If you have knowledge of PHP, you can develop your own plugins, and there is a comprehensive list of resources at Plugin Resources to get you started.
A documentação do WordPress em Português do Brasil.
Todas as comunidades lusófonas também são bem-vindas! Adicione {{Codex-pt}} em seus artigos. |