backup

Cloning localhost installation to another localhost installation

GP 1.3.41 and GP Premium 1.2.92 under WP 4.7. Apologies if this is TL;DR, but I am at my wits’ end at this point. I’ve spent an entire day in a fruitless quest for a way to clone a localhost site to another localhost installation. I’ve finished setting up the basic site and before I … Read more

An alternative way to add custom css and backup/export/save it for another site

Install this plugin: https://wordpress.org/plugins/code-snippets/ Add a new snippet like this… (i’ve added my css as an example only) Add your css between the echo '<style type="text/css"> and </style>'; tags // EXTRA Theme CSS function custom_css() { echo '<style type="text/css"> .textwidget.widget-text form select#cat.postform {margin-bottom:5px;} .entry-meta {display:none;} .entry-meta {color:#333;} .sidebar form select#cat.postform {font-size:14px;padding:5px;} .entry-content ul {margin:20px;} .entry-content … Read more