CSScomb is a coding style formatter for CSS.
You can easily write your own configuration to make your stylesheets beautiful
and consistent.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Preference > Package Settings > SFTP > Settings - User | |
откроется файл и туда вставляете вот этот код: | |
{ | |
"email": "[email protected]", | |
"product_key": "61faaf-dac84e-9f9945-4301a1-a7ec06" | |
} | |
Вот и все. Для меня сработало. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SFTP |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Flexbox Snippets | |
https://packagecontrol.io/packages/Flexbox/Snippets |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers; | |
use App\Page; | |
use Illuminate\Http\Request; | |
use Illuminate\Support\Facades\Validator; | |
class PagesAddController extends Controller | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App; | |
use http\Env\Request; | |
use Illuminate\Database\Eloquent\Model; | |
class Page extends Model | |
{ | |
protected $fillable = ['name','alias','text','images']; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Route::match(['GET', 'POST'], '/add', ['uses' => 'PagesAddController@execute', 'as' => 'pagesAdd']); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Development and creation of webs using technologies: Bootstrap V4, HTML5, CSS, WordPress and other CMS. Solution of various problems in the specified technologies. | |
Practical experience-more than 20 years. | |
Desarrollo y creación de webs utilizando tecnologías: bootstrap V4, HTML5, CSS, WordPress y otros CMS. Solución de diversos problemas en las tecnologías especificadas. | |
Experiencia práctica-más de 20 años. | |
Разработка и создание веб-сайтов с использованием технологий: Bootstrap v4, HTML5,CSS, Wordpress и другие CMS. Решение различных проблем по указанным технологиям. | |
Практический опыт — более 20 лет. | |
Si tienes acceso ssh puedo instalar y configurar certbot (sertificato ssl regalo, que acepten de todos browsers) con prolongacion automatico. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Создание базы данных консолью | |
1.Вход в бд: | |
mysql -u root -p | |
2.Создание базы данных: | |
CREATE DATABASE wpbase; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Прописывание стилей и скриптов в function.php | |
Стили: | |
function solid_scripts() { | |
wp_enqueue_style( 'solid-style', get_stylesheet_uri() ); | |
/* Bootstrap core CSS */ | |
wp_enqueue_style( 'bootstrap', get_template_directory_uri() . '/css/bootstrap.css', array("solid-style")); | |
/* Main style */ | |
wp_enqueue_style( 'solid-main-style', get_template_directory_uri() . '/css/style.css', array("solid-style")); |