hoy/polylang

A Polylang helper for WordPlate

4.0.0 2018-03-12 15:09 UTC

This package is not auto-updated.

Last update: 2024-04-19 03:43:40 UTC


README

A Polylang helper for WordPlate.

Build Status StyleCI Coverage Status Latest Version License

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.

License

MIT © Hoy Multimedia AB