Contents
WordPress
Introduction
- https://wordpress.org/
- https://en.wikipedia.org/wiki/WordPress
- https://www.ionos.com/community/websites-ecommerce/wordpress/
Core Topics
Editors
- (General area on editors – /is/apps/editors)
- https://www.google.com/search?q=wordpress+editors
- https://wordpress.org/plugins/search/editors/
- Classic
- Gutenberg – block-based, introduced with WordPress 5.0 in Dec 16, 2018
- https://ithemes.com/gutenberg-wordpress-editor-10-things-to-know
- https://wordpress.org/gutenberg/
- Gutenberg WordPress editor, also known as the WordPress block editor, is now part of WordPress core.
- Alternatives:
- https://createandcode.com/gutenberg-vs-elementor-comparison/ (2028-12-05)
- https://www.godaddy.com/garage/wordpress-5-release/ (2018-12-05)
- https://www.ionos.com/community/index.php?id=5802
- https://elementor.com/
- https://www.wpbeginner.com/beginners-guide/best-drag-and-drop-page-builders-for-wordpress/ (2020-01-02)
- Beaver Builder
- Divi
- Elementor
- Visual Composer Website Builder
- Themify Builder
- Page Builder by SiteOrigin
- https://athemes.com/reviews/best-wordpress-page-builder-plugins-compared/ (2020-06-25)
- Elementor
- Beaver Builder
- Divi Builder
- Thrive Architect
- SiteOrigin Page Builder
- WPBakery Page Builder
- Themify Builder
- Brizy
- Visual Composer
- WP Page Builder
Keyboard, Keyboard Shortcuts
- google.com/search?q=wordpress+keyboard+shortcuts
- wordpress.org/support/article/keyboard-shortcuts/
- 68 Time-Saving WordPress Keyboard Shortcuts to Boost Your Efficiency – 10web.io/blog/wordpress-keyboard-shortcuts/
- google.com/search?q=wordpress+keyboard+shortcuts+plugin
- wordpress.org/plugins/wp-hotkeys/
Plugins
- Enable Media Replace
- Menu Image
- Redirection (2020-12-05)
- Table Sorter
Themes
- https://www.google.com/search?q=wordpress+themes
- Customizr
- Top-lists:
- Mobile-focused
Specific Areas
Access
- Visibility – standard alternatives, w/o any plugin(s):
- Public
- Password protected
- Private
‘Level’ | Anyone | Find in Search | Direct URL |
1. Public (std) | Yes | Yes | Yes |
2. Password protected (std) | Yes, after provided password | Find yes, but access requires password, also applies to internal users | Yes, also internal users must provide password. |
3. Private (std) | No | Depend: * No, does not show up in search for general users * Yes, does show up in search for internal users (that has access to page) |
Depend: * No – “Page not found” for ‘external’ users * Yes, for ‘internal’ users |
(<table class=”tablesorter” style=”border-collapse: collapse; width: 100%;”>)
From order of accessibility, easiest at top, most limited at bottom:
- Public – everyone has access
- std – everyone has access, and can find in search
- w/ (e.g.) Search Exclude plugin – can at least exclude from searches
- Thus allow use of ‘Direct URL’ and without need for password
- Password protected
- Private
Search
- google.com/search?q=wordpress+search+plugin
- 5 Best WordPress Search Plugins for Enhanced Site Search 0 elementor.com/blog/best-wordpress-search-plugins/ – good breakdown into “Key Features to Look for in a WordPress Search Plugin”
- Performance/Scalability
- Content Completeness
- Algorithm Quality/Customization
- User-Friendly Features Like Autocomplete
- google.com/search?q=autocomplete+search+wordpress+plugin
Tables
- google.com/search?q=wordpress+tweak+table+formats
- premium.wpmudev.org/blog/wordpress-responsive-tables/
- sorting
- google.com/search?q=wordpress+table+sorting
- Table Sorter – Plug-in, below
Table Sorter – Plug-in
-
- wordpress.org/plugins/table-sorter/
- wpreloaded.com/plugins/table-sorter/how-to/
<table id=”myTable” class=”tablesorter {sortlist: [[2,0]]}”>
“IMPORTANT
-
- THEAD and TBODY tags are compulsory in the desired table, otherwise this plugin will not work.
- Add tablesorter class in the desired TABLE tag.
- For column heading, use TH tag within THEAD tag.
- If you want to exclude a particular column, add sortless class to that TH tag.”
- class=”tablesorter” IS critical (and THEAD et c in IMPORTANT just above)
- Added any ID is NOT.
- E.g. of working definition: <table class=”tablesorter” style=”border-collapse: collapse; width: 100%;”>
- See Access table above in this page.
Title Tweaking…
CURRENT solution:
- Add The SEO Framework plugin (wordpress.org/plugins/autodescription/)
- Change Title Settings
- In Title Settings section
- Click on ‘+ Additions’
- Set Site Title Location to Left.
- (May want/need to tweak general site settings for length/style/content of title.)
- Save
- That’s It.
EARLIER:
Editing general-template.php or functions.php, tried both over the years BUT for both files any tweaks are overwritten with themes/Wordpress is updated.
/Volumes/…/clickandbuilds/…/wp-includes/general-template.php
function wp_get_document_title() {
…
FROM
FROM | TO |
$title = array( ‘title’ => ”, ); |
$title = array( ‘site’ => ”, ‘title’ => ”, ); |
functions.php file has also been mentioned as location to add tweaks.
// 2021-04-19 JOHSAR
/* TEST 1 – and it worked
function my_meta_title() {
return ‘My page title’;
}
add_filter( ‘pre_get_document_title’, ‘my_meta_title’ );
END TEST */
/* TEST 2 - and it worked END TEST 2 */ # $title = apply_filters( 'document_title_parts', $title ); function my_document_title_parts( $title ) { $new_title = array(); ### return 'J&P x - $titlkeMy page title'; // add category // $categories = get_the_category(); // if ( ! empty( $categories ) ) { $new_title['site'] = 'J&P'; # $new_title['site'] = ''; // } foreach( $title as $k => $v) { $new_title[$k] = $v; } return$new_title; } add_filter( 'document_title_parts', 'my_document_title_parts' );