avatar

目錄
不錯的免費 Wordpress plugins & 備份 WordPress database

Smooth Back To Top Button

https://wordpress.org/plugins/smooth-back-to-top-button/

Nice looking with progess bar circle, smooth scrolling to top animation.
Simple to set up. Very easy to use.

WP plugin: Smooth Back To Top Button

WP plugin: Smooth Back To Top Button - preview


Yoast SEO

https://wordpress.org/plugins/wordpress-seo/

WP plugin: Yoast SEO

WP plugin: Yoast SEO - preview


SimpleTOC – Table of Contents Block

https://wordpress.org/plugins/simpletoc

Automatically generate and update TOC block according to H1, H2, H3…H6 blocks in the article.

WP plugin: SimpleTOC


CodeMirror Blocks

https://wordpress.org/plugins/wp-codemirror-block

WP plugin: CodeMirror Blocks


Classic Editor

https://wordpress.org/plugins/classic-editor

WP plugin: Classic Editor


Advanced Custom Fields (ACF)

https://wordpress.org/plugins/advanced-custom-fields

WP plugin: ACF


Easy Add Thumbnail

https://wordpress.org/plugins/easy-add-thumbnail

WP plugin: Easy Add Thumbnail

WP plugin: Easy Add Thumbnail - preview


Quick Featured Images

https://wordpress.org/plugins/quick-featured-images

WP plugin: Quick Featured Images


Social Sharing Plugin – Sassy Social Share

https://wordpress.org/plugins/sassy-social-share

WP plugin: Sassy Social Share


MonsterInsights – Google Analytics Dashboard for WordPress

https://wordpress.org/plugins/google-analytics-for-wordpress/

WP plugin: MonsterInsights – Google Analytics Dashboard for WordPress


Page View Count

https://wordpress.org/plugins/page-views-count/

Can show view count in each post/page in frontend, and statistic dashboard in the Admin Dashboard and in the editor interface of each post/page.

WP plugin: Page View Count


Command line for backup WordPress site source code

bash
tar cvfz <name>.tar.gz <wordpress folder>

tar [options] [archive-file] [file or directory to be archived]

Options Description
-c Creates an archive by bundling files and directories together
-v Displays verbose information, providing detailed output during the archiving or extraction process.
-f Specifies the filename of the archive to be created or extracted.
-z Uses gzip compression when creating a tar file, resulting in a compressed archive with the ‘.tar.gz’ extension.

Reference: https://www.geeksforgeeks.org/tar-command-linux-examples/


Command line for backup WordPress database

bash
mysqldump -u <database_username> -p --databases <database_name> --single-transaction --routines > <custom_name>.sql

password can be found in wp config file.

Options Description
-u user
-p password
–single-transaction allows MySQL InnoDB dumps to have a consistent state of the database. It tells MySQL that we are about to dump the database, thus, breaking changes like table structure queries will be blocked to preserve data consistency. Note that this only applies for InnoDB tables.
–routines dump procedures and functions inside of the database

References:


Reset WordPress Admin password using SQL

sql
update wp_user set user_pass=md5("<your password>") where user_login='<your admin username>';

References:


如果您喜歡我的文章,歡迎幫我在下面按5下讚!感謝您的鼓勵和支持!

文章作者: ouoholly
文章鏈接: https://ouoholly.github.io/post/awesome-wordpress-plugins/
版權聲明: 本博客所有文章除特別聲明外,均採用 CC BY-NC-SA 4.0 許可協議。歡迎「部份引用」與介紹(如要全文轉貼請先留言詢問),轉載引用請註明來源 ouoholly 的倉庫,謝謝!

評論