echo '' ;

WordPress

WordPress is a content management tool for web design and development. Additionally, it supports numerous themes, plugins, and CSS, offering a plethora of features. Moreover, WordPress can be effortlessly installed on any type of machine, and it is user-friendly. Furthermore, the number of WordPress users is steadily increasing due to its robust features. Furthermore, it supports views on mobile, tablet, and web platforms. Lastly, its user-friendly dashboard provides a multitude of options for utilizing the blog.

Keyboard Shortcuts

Ctrl + KeyShift + Alt + KeyFormatting Shortcuts
ctrl + c Copy
ctrl + v  Paste
ctrl + a  Select all
ctrl + x  Cut
ctrl is + z  Undo
ctrl + y  Redo
ctrl + b  Bold
ctrl + i  Italic
ctrl + u  Underline
ctrl + k  Insert/edit link
Shift + Alt + 1  H1
Shift + Alt + 2  H2
Shift + Alt + 3  H3
Shift + Alt + 4  H4
Shift + Alt + 5  H5
Shift + Alt + 6  H6
Shift + Alt + 7  Paragraph
Shift + Alt + C  Align Center
Shift + Alt + L Align Left
Shift + Alt + R

Align Right (Text, Headers, Images)
Shift + Alt + T
Insert Read More Tag
Shift + Alt + O
Numbered List
Shift + Alt + Q
Block Quotes
Bulleted list,
Bulleted list,
1.  Numbered list
1)  Numbered list
---  horizontal line

WordPress Theme

Theme NameOfficial Links
Easy Maghttp://demos.famethemes.com/easymag/
Store Fonthttps://woocommerce.com/storefront/
torefront/
Jolenehttps://wordpress.org/themes/jolene/

Theme Detectors

Know the third-party WordPress website theme & plugin details

WordPress plugins

  • Table Press: For Table Add in anywhere in site

Table Press

Table-press show a particular row : https://tablepress.org/extensions/row-filter/

Code

.tablepress thead th,
.tablepress tfoot th {
    background-color: #ffffff;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    border: 2px solid black;
}

.tablepress .odd td {
    background-color: #ffffff;
}

.tablepress .even td {
    background-color: #ffffff;
}

.tablepress tr {
    border: 1px solid black;
}

.tablepress tbody td {
    font-size: 14px;
    text-align: justify;
    color: #000000;
    vertical-align: middle;
    border: 2px solid black;
}

.tablepress .row-hover tr:hover td {
    background-color: #4da303;
}



/********************************************************/

.tablepress tr,
.tablepress thead th,
.tablepress tfoot th {
    background-color: #000000;
    color: #000000;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #000000;
}

.tablepress .odd td {
    background-color: #000000;
}

.tablepress .even td {
    background-color: #000000;
}

.tablepress tbody td {
    background-color: #000000;
    font-size: 14px;
    text-align: justify;
    color: #000000;
    vertical-align: middle;
    border: 1px solid #000000;
}

.tablepress .row-hover tr:hover td {
    background-color: #000000;
}

.tablepress a {
    font-size: 14px;
    color: #000000;
}

Sure, here’s a breakdown of the CSS code for the table:

Then there’s a separator (/********************************************************/) to distinguish between the overriding styles & previous styles

Header and Footer Cells (thead th, tfoot th): Background color, text color, font size, font weight, text alignment, vertical alignment, and border properties are set.

  • Odd Rows (odd class): Background color for cells in odd rows is set.
  • Even Rows (even class): Background color for cells in even rows is set.
  • Table Rows (tr): Border properties for all table rows are set.
  • Table Body Cells (tbody td): Font size, text alignment, text color, vertical alignment, and border properties for table body cells are set.
  • Row Hover Effect (row-hover class on tr:hover td): Background color change for table rows on hover is set.
  • Overriding: The code resets background color, text color, font size, font weight, text alignment, vertical alignment, and border properties for header, footer, odd and even rows, and table body cells.
  • Table Links (a): Font size and color for links within the table are set.

These styles are applied to tables created using the TablePress plugin, ensuring consistent formatting and appearance across the tables on the website.

Hide page source code WordPress plugin

WordPress CSS

What is CSS? CSS abbreviation is Cascading Style Sheets Used to cascading the web design easily.

AreaCSS Code
un-visited linka:link {color:#1942b5;}
visited linka:visited {color:#a0189e;}
mouse over the link (Hover)a:hover {color:#23bc34;}
selected link reda:active { color: #cc0000; }
Content: un-visited link.site-content a:link { color: #196380; }
Content: Visited link.site-content a:visited { color: #248f24; }
Content: mouse over the link (Hover).site-content a:hover { color: #ff3300; }
Content: selected link redContent: selected link red.site-content a:active { color: #cc0000; }
Change site title color and background.site-title a {color: red;background : red;}
Site Background color change/* Site Background color change*/
.site-content {background : black;}
Primary Main Contents: Border, Padding, and Margin/Primary main contents/
primary {border : 2px solid;padding: 2%;margin : 0.001%;}
Secondary left sidebar: background, border, margin, and padding./*Secondary left side bar*/
#secondary .widget{background: black;border: 5px solid ray;margin : 10%;padding-top: 3px;}
Secondary Widge Title: Color, Font, Text Align, Margin and Padding#secondary .widget-title {color: #15a313;font-weight: bold;font-size:26px;text-align: center;margin-top: 1px;margin-bottom: 1px;padding-top: 3px;padding-bottom: 1px;}
Change the all headings color of h1, h2, h3, h4, h5, h6, /* change the all headings color*/
h1,h2,h3,h4,h5,h6{color: Green;font-weight: bold;}
Footer Section#footer {color: #15a313;font-weight: bold;font-size:26px;text-align: center;margin-top: 1px;margin-bottom: 1px;padding-top: 3px;padding-bottom: 1px;}
 Site info/* Hide the footer credit – note that this is only allowed on self-hosted sites or WordPress.com sites with the Business plan */
.site-info {display: none;}

.site-info::before {content: "This is my Copyright";display: red;color: #ffff;font-weight: bold;}
Sidebar#sidebar {position: relative; float: right; width: 170px;color: blue;font-size: 90%; border-right: solid 1px blue;}

Dashboard

If you have a question like How to change the WordPress button color in the dashboard? Here your anwere

Log in to your site using WordPress → Go to Users tab in Dashboard Click All Users → Click Edit in Users list → In Admin Color Scheme Select your Schema.

RSS Feed

Rich site summary often called really simple syndication (Image Source)

Video Source

WordPress FQA

if you know the answers of be question let us know

  • How to install WordPress in Windows PC ? in Cpanel ? in Linux ?

What is the difference between Post and Pages in wordpress

  • Pages – preferable for static contents
  • Post – preferable for dynamic contents (Frequently updation)

Note: You can use any thing, It’s not restriction to use. For more refer this

WooCommerce

Woo-commerce is a free e-commerce plugin that allows you to sell anything, beautifully. Moreover, built to integrate seamlessly with WordPress, Woo-commerce is the world’s favorite e-commerce solution that gives both store owners and developers complete control. Furthermore, with endless flexibility and access to hundreds of free and premium WordPress extensions, Woo-commerce now powers 30% of all online stores, surpassing any other platform.

  • MSG91 created woo-commerce SMS plugin to send SMS to customers.

Make Awesome Blog

Earning money is important for everyone. There are a lot of ways to earn money easily. One of the ways is blogging. By showcasing your knowledge and skills through blogging, you can effectively monetize your content. Specifically, one method is by displaying advertisements on your blog. Various advertisement agents are available in the market, such as Google AdSense.

Sure, here’s the content converted into a table format:

TaskDescription
Writing postBreaking down the complex concept into a simple and easily understandable format for the common man is a special skill. Displaying content in different sections is a beautiful job for bloggers.
Proofread writingUtilize proofreading to check your post for any grammatical mistakes. It will identify erroneous words and suggest corrections for your post.
Use bulleted or numbered listInstead of paragraphs, use bulleted or numbered lists to highlight valid points.
Insert Read more tagUtilize the “read more” tag to display only a portion of your post’s content in categories.
Horizontal lineUse a horizontal line to separate different sections within your post, enhancing its visual appeal.
Use feature Image for postIncorporating a featured image enhances the appearance of your post in category pages.
SEO issueEnsure that the featured image is at least 200 by 200 pixels to be recognized by Facebook and other social media sites.

Remove Meta information in the post

  • Remove Meta information such as Author and Date from posts and pages.
  • Log in to your site using WordPress → Go to Appearance tab in Dashboard Click Edit → Check-in “Theme function.php“.

Others features related to post creation

FeaturesProcedure
Change Your Default WordPress Post Category & Post Type?In your admin area, simply navigate to Settings Writing and then look for the pull-down menu beside “Default Post category.”

Refer to the link Image
To remove your sharing and like buttons,Navigate to Settings Sharing. Under Show buttons on, uncheck all options, and click Save Changes.
Enable/Disable related postGo to the My SitesSwitch Sites and select your site (if you have more than one). Click ToolsMarketing. On the Traffic tab that appears, scroll down to the “Related Posts” settings. Select either “Show related content after posts” or “Hide Related” content after posts” to turn the feature on or off. Don’t forget to scroll to the bottom of the page and click Save Settings.

Refer to the Link Image

SCO Score and Readability

To assess the SCO score (Search Content Optimization) and readability of a website, you can use various online tools designed for this purpose. Additionally, these tools typically analyze the content of the website and provide insights into factors such as keyword density, heading structure, metadata, and readability metrics.

ArunEworld WordPress SCO Score and Readability

By using these tools, you can gain valuable insights into how effectively your website is optimized for search engines and how readable its content is for your audience. Consequently, this information can help you improve your website’s performance and user experience.

For SCO score:

Look for SEO analysis tools like Ahrefs, SEMrush, Moz, or Google Search Console. Additionally, these tools can offer insights into the effectiveness of your website’s search engine optimization, encompassing factors such as keyword usage, backlinks, and overall site health.

For readability:

Several online readability tools can analyze the text of your website and provide readability scores based on different formulas like Flesch-Kincaid Grade Level, Gunning Fog Index, or Coleman-Liau Index. Furthermore, some popular tools include Readable.io, Hemingway App, and WebFX Readability Tool

WordPress Advantages:

WordPress offers several advantages. Firstly, it is remarkably user-friendly, making it accessible even for beginners. Moreover, with thousands of themes and plugins available, users have ample customization options to tailor their websites to their specific needs and preferences. Additionally, WordPress boasts a large and active community of users, developers, and contributors, providing extensive support and resources. Furthermore, WordPress is designed with search engine optimization (SEO) in mind, facilitating better visibility on search engines. Moreover, it is highly scalable, accommodating websites of various sizes and traffic volumes. Furthermore, its responsive design ensures a consistent user experience across different devices. Additionally, regular updates enhance security, performance, and features. Lastly, WordPress is cost-effective, as it is free to use, with many themes and plugins also available at no cost, making it an attractive option for website development.

Disadvantage of WordPress

WordPress, while advantageous, also presents drawbacks. Its user-friendly interface belies complexities, especially for novices customizing themes and plugins. Security vulnerabilities are concerning, demanding regular updates and robust security measures. Performance issues may arise from certain themes and plugins, impacting website speed and compatibility. Maintenance overhead is significant, requiring regular updates for optimal performance and security. Limitations in design and functionality often require coding expertise or professional help, tempering flexibility. Risks are posed by dependency on third-party plugins, as not all are well-maintained or compatible with updates. Mastering WordPress may demand considerable time and effort, with limited official support available. Weighing these drawbacks against advantages is vital when considering WordPress as a website platform.

Feature of WordPress

WordPress boasts a plethora of features that make it a popular choice for website creation. Its user-friendly interface simplifies content management, allowing users to easily create, edit, and publish content without technical expertise. Additionally, WordPress offers extensive customization options with thousands of themes and plugins available, catering to diverse design and functionality needs. It supports various media types, including images, videos, and audio, enabling rich and engaging content creation. With built-in blogging functionality, users can effortlessly publish and manage blog posts, complete with scheduling and drafting options. WordPress also prioritizes search engine optimization (SEO), providing tools and plugins to enhance website visibility on search engines. Furthermore, its mobile responsiveness ensures optimal viewing experiences across different devices. Regular updates ensure security enhancements and introduce new features, while community support offers assistance and resources through forums, documentation, and tutorials.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.