Wordpress

From Bitpost wiki
Revision as of 14:59, 12 May 2019 by M (talk | contribs) (→‎Manual)

Upgrade

I always update Wordpress when an update is available, straight in the admin panel with no backup.

Manual

Wordpress release quality has gone to shit in 2018-2019 and I've had to do the manual installation clobber, THIS SUCKS but whatever:

 🌵 m@bitpost  [~/development/bitpost.com/htdocs/news] wget https://wordpress.org/latest.zip
 🌵 m@bitpost  [~/development/bitpost.com/htdocs/news] rm latest.tar.gz 
 🌵 m@bitpost  [~/development/bitpost.com/htdocs/news] sudo -u apache rm -rf wp-includes wp-admin
 🌵 m@bitpost  [~/development/bitpost.com/htdocs/news] sudo -u apache unzip latest.zip

My themes

bitpost.com/news

Here i use a very jacked theme:

~/development/bitpost.com/htdocs/news/wp-content/themes/mdm_veryplaintxt

Custom widgets, fonts, etc:

~/development/bitpost.com/htdocs/news/wp-content/themes/mdm_veryplaintxt/functions.php

CSS:

~/development/bitpost.com/htdocs/news/wp-content/themes/mdm_veryplaintxt/style.css

To play with fonts:

  • go to google fonts and find some cool ones
  • adjust functions.php to load the new ones
  • adjust style.css to use them; you should consider font family, size, and weight of at least these 4 things:
body
#content h2
pre
#sidebar ul
  • restart apache!