hoy / polylang
A Polylang helper for WordPlate
Installs: 7 959
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 1
Forks: 2
Open Issues: 0
This package is not auto-updated.
Last update: 2024-11-01 05:55:44 UTC
README
A Polylang helper for WordPlate.
Installation
Require this package, with Composer, in the root directory of your project.
$ composer require hoy/polylang
Login to the WordPress administrator dashboard and activate the Polylang plugin. Go to the Polylang settings page and add at least one language.
Usage
Register the translations with the pll_translations
function. They will now be available for translation on the 'Strings translations' page in the WordPress administrator dashboard.
pll_translations([ 'group' => [ 'String that should be translatable by Polylang' => 'Explanation of how the string is used', ], 'general' => [ 'English' => 'The english language', 'Swedish' => 'The swedish language', ], 'cookie-bar' => [ 'This website uses cookies to ensure you get the best experience on our website.' => 'Cookie bar message', 'I understand' => 'Cookie bar button text' ], ]);
Then to fetch and print a translation you can use the trans
function like you would use regular __() function.
echo trans('I understand');
Documentation
Please visit Polylang's documentation to find out more about translating your post types.