Skip to content

Instantly share code, notes, and snippets.

@chomovva
chomovva / pll-customizer-translates.php
Created December 9, 2021 14:11
An example of translating strings from the WordPress Customizer panel using the Polylang plugin
<?php
/**
* Регистрация строк в Polylang
* */
function theme_add_register_strings() {
$strings = [
'title' => false,
'description' => true,
@chomovva
chomovva / category-templates.php
Last active December 8, 2021 11:57
Dynamic selection of category templates
<?php
define( 'THEME_TEXTDOMAIN', 'theme_custom_textdomain' );
/**
* Получаем список шаблонов
* */
function get_category_templates( $templates ) {
$theme_path = get_stylesheet_directory();