Skip to content

Instantly share code, notes, and snippets.

@popoff17
popoff17 / functions.php
Created March 31, 2020 05:50 — forked from FriendlyWP/functions.php
Automatically add 'alt' tags to images if none exist. (Credit: https://gist.github.com/svil4ok/1991931)
// AUTOMATICALLY ADD ALT TAGS TO IMAGES
add_filter('the_content', 'add_alt_tags', 99999);
function add_alt_tags($content)
{
global $post;
preg_match_all('/<img (.*?)\/>/', $content, $images);
if(!is_null($images))
{
foreach($images[1] as $index => $value)
{
@popoff17
popoff17 / !Как установить сфинкс.md
Created July 11, 2019 13:35 — forked from codedokode/!Как установить сфинкс.md
Как установить и настроить сфинкс.

Как установить и настроить сфинкс.

Скачиваем сфинкс (берем версию с MySQL и со стеммингом на 15 языков Win32 binaries w/MySQL+PgSQL+libstemmer+id64 support соответствующую битности твоей ОС), распаковываем например в d:\temp\s\

На этом установка sphinx завершена. В дебиане просто делаем sudo apt-get install sphinxsearch.

Создаем таблицы:

CREATE TABLE news 

(id INT(10) AUTO_INCREMENT PRIMARY KEY, topic INT(10) NOT NULL, header VARCHAR(200) NOT NULL,