Skip to content

Instantly share code, notes, and snippets.

View zhukovec's full-sized avatar

Vladimir Zhukovets zhukovec

View GitHub Profile
@zhukovec
zhukovec / wp-cli-install.sh
Created April 12, 2018 21:38 — forked from marciomassari/wp-cli-install.sh
WP-CLI - Install WordPress
// install WordPress
wp core download --locale=pt_BR
// configuration wp-config.php
wp core config --dbname=testecli --dbuser=root --dbpass=root --dbprefix=wp_ --locale=pt_BR
// generate database
wp db create
// install WordPress
@zhukovec
zhukovec / wp_install.sh
Last active December 11, 2020 02:26 — forked from jetonr/wp_install.sh
#!/bin/bash
# This script installs WordPress from Command Line.
#Colors settings
BLUE='\033[0;34m'
GREEN='\033[0;32m'
RED='\033[0;31m'
YELLOW='\033[0;33m'
NC='\033[0m' # No Color
@zhukovec
zhukovec / nginx.conf
Created January 30, 2018 20:56 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@zhukovec
zhukovec / Wp-Cli
Created November 11, 2017 15:26 — forked from silversonicaxel/wordpress-cli
WORDPRESS #wordpress
//installation of wordpress client
curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
//check if it works
php wp-cli.phar --info
//setting permissions and scope (UNIX environment)
chmod +x wp-cli.phar
sudo mv wp-cli.phar /usr/local/bin/wp
@zhukovec
zhukovec / functions.php
Created November 11, 2017 15:24 — forked from qutek/functions.php
[Wordpress] Disable wordpress comment
<?php
// Disable support for comments and trackbacks in post types
function df_disable_comments_post_types_support() {
$post_types = get_post_types();
foreach ($post_types as $post_type) {
if(post_type_supports($post_type, 'comments')) {
remove_post_type_support($post_type, 'comments');
remove_post_type_support($post_type, 'trackbacks');
}
@zhukovec
zhukovec / gist:6caa73f1a7c245c146ddb5e9237fe176
Last active November 21, 2017 20:43 — forked from 0bserver07/ Change Website URL after host transfer
Wordpress: команда для обновления URL адресов через базу данных
We couldn’t find that file to show.
@zhukovec
zhukovec / Натяжка
Created November 11, 2017 15:05 — forked from kordzakhiageo/Натяжка
Wordpress
1) header и footer перемещаем в отдельные файлы header.php и footer.php
на их местах в index.php вставляем команды:
<?php get_header();?> // подключаем header
<?php get_footer();?> // подкючаем footer
2) в header.php после всех стилей добавляем функцию <?php wp_head();?>. В footer.php после всех скриптов добавляем <?php wp_footer();?>
3) ко всем локальным путям добавляем функцию по образцу:
<link rel="stylesheet" href="<?php echo get_template_directory_uri();?>/css/main.css">
<script src="<?php echo get_template_directory_uri();?>/js/main.js"></script>
<img src="<?php echo get_template_directory_uri();?>/img/photo.jpg" alt="my-photo">
4) удалить admin bar. В файл functions.php добавить:
//In Template
<?php
$options = get_option('sample_theme_options');
echo $options['phone1'];
?>
//in functions.php
require_once ( get_stylesheet_directory() . '/theme-options.php' );
//theme-options.php file:
<?php
$post = $wp_query->post;
if (in_category('cat_label_1')) {
include(TEMPLATEPATH.'/single-cat_label_1.php');
} elseif (in_category('cat_label_2')) {
include(TEMPLATEPATH.'/single-cat_label_2.php');
}
?>