Skip to main content

WordPress: Notes

WordPress Logo

One of the most popular CMS (Content Management Syste).

Keep updating

>>> On August 8, 2023, WordPress 6.3 "Lionel" was released to the public.

WP-CLI

wp cli version
wp cli update


Check current WP-CLI version and update

bitnami@ip-172-26-10-156:~$ sudo wp cli version
WP-CLI 2.6.0
bitnami@ip-172-26-10-156:~$ sudo wp cli update
You have version 2.6.0. Would you like to update to 2.8.1? [y/n] y
Downloading from https://github.com/wp-cli/wp-cli/releases/download/v2.8.1/wp-cli-2.8.1.phar...
md5 hash verified: a0cf91756fd46903c83c436ec1d462eb
New version works. Proceeding to replace.
Success: Updated WP-CLI to 2.8.1.
bitnami@ip-172-26-10-156:~$ sudo wp cli version
WP-CLI 2.8.1
bitnami@ip-172-26-10-156:~$

Popular posts from this blog

Powershell: Test-NetConnection

PS C:\Users\tuyen> get-help Test-NetConnection NAME     Test-NetConnection SYNTAX     Test-NetConnection [[-ComputerName] <string>] [-TraceRoute] [-Hops <int>] [-InformationLevel {Quiet |     Detailed}]  [<CommonParameters>]     Test-NetConnection [[-ComputerName] <string>] [-CommonTCPPort] {HTTP | RDP | SMB | WINRM}     [-InformationLevel {Quiet | Detailed}]  [<CommonParameters>]     Test-NetConnection [[-ComputerName] <string>] -Port <int> [-InformationLevel {Quiet | Detailed}]     [<CommonParameters>]     Test-NetConnection [[-ComputerName] <string>] -DiagnoseRouting [-ConstrainSourceAddress <string>]     [-ConstrainInterface <uint32>] [-InformationLevel {Quiet | Detailed}]  [<CommonParameters>] ALIASES     TNC REMARKS     Get-Help cannot find the Help files fo...

Windows command: icacls

Icacls is a command-line utility that can be used to display or modify discretionary access control lists (DACLs) on specified files, and apply stored DACLs to files in specified directories.

Powershell: Get-ChildItem

List, search/find files and directories with Get-ChildItem cmdlet.