Skip to content

Instantly share code, notes, and snippets.

@techpulsetoday
techpulsetoday / functions.php
Created April 18, 2020 11:25
Add Class to first Paragraph in WordPress the_content();
/**
* Add Class to first Paragraph in WordPress the_content();
*
* @param [type] $content
* @return void
*/
function first_paragraph($content)
{
if (is_page('careers')) {
return preg_replace('/<p([^>]+)?>/', '<p$1 class="text-center">', $content, 1);
@techpulsetoday
techpulsetoday / function-move-yoast-to-bottom.php
Created April 18, 2020 11:51
WordPress - Move Yoast SEO box to the bottom of the post/page
/**
* Move Yoast to the Bottom
*
* @return void
*/
function yoasttobottom()
{
return 'low';
}
add_filter('wpseo_metabox_prio', 'yoasttobottom');
@techpulsetoday
techpulsetoday / profanity_words.sql
Created April 25, 2020 14:52
Full List of Bad Words and Top Swear Words Banned by Google
-- phpMyAdmin SQL Dump
-- version 5.0.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Apr 25, 2020 at 08:19 PM
-- Server version: 5.7.29-0ubuntu0.18.04.1
-- PHP Version: 7.3.17-1+ubuntu18.04.1+deb.sury.org+1
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";