Posts

Showing posts from June, 2022

How to Create a Book Out of Your Blog Content

Image
  Today’s writers don’t have to choose between managing a blog or writing a book. They can do both, and each effort can help the other. For many bloggers, taking the leap to write a book is a natural next step (take a look at this Goodreads list of “Popular Blog Turned Book Books”). It’s an upward move that makes sense and they’ve already crossed two barriers to entry: bloggers can write and they’ve built a following thanks to their writing. Also, altogether they may have already written a book’s worth of content. Here are three reasons to turn a blog into a book: 1. To monetize an existing audience Blogs can help you build an audience, but blog content alone won’t earn you money. You need some type of monetization, and a book can be one of many income streams. A book lets you leverage an existing audience that’s willing to pay for even more content if that content is different or superior. 2. To grow your audience There are plenty of people who would love your work and what you ha...

WordPress 5.2 “Jaco”

Image
Version 5.2 of WordPress, named “Jaco” in honor of renowned and revolutionary jazz bassist Jaco Pastorius, is available for download or update in your WordPress dashboard. New features in this update make it easier than ever to fix your site if something goes wrong. There are even more robust tools for identifying and fixing configuration issues and fatal errors. Whether you are a developer helping clients or you manage your site solo, these tools can help get you the right information when you need it. Site Health Check Building on the   Site Health  features introduced in 5.1, this release adds two new pages to help debug common configuration issues. It also adds space where developers can include debugging information for site maintainers. PHP Error Protection This administrator-focused update will let you safely fix or manage fatal errors without requiring developer time. It features better handling of the so-called “white screen of death,” and a way to enter recovery mode...

Secure WordPress admin panel

Image
  It might be required sometime to prevent a user or all users with a specific role from accessing the WordPress admin panel. It’s not tough. Let’s think that we want that all users with author role will not be able to access the admin panel. All you have to do is just add the following code in your functions.php and you’re done add_action( "init", "prevent_from_admin_panel" ); function prevent_from_admin_panel() { if ( ! current_user_can( "manage_categories" ) ) { if ( is_admin() && !defined( 'DOING_AJAX' ) ) { $pageurl = get_author_posts_url( get_current_user_id() ); wp_redirect( $pageurl ); } } } The code checks if the currently logged in user has the necessary capability manage_categories. This particular capability is only available to the users with Editor or higher roles, like an Administrator. So, if the current user doesn’t have it, he must be someone with an Author role. Now we will just get the url of his posts page and redirect ...

WordPress 5.1.1 Security and Maintenance Release

Image
WordPress 5.1.1 is now available! This security and maintenance release introduces 14 fixes and enhancements, including changes designed to help hosts prepare users for the minimum PHP version bump coming in 5.2. This release also includes a pair of security fixes that handle how comments are filtered and then stored in the database. With a maliciously crafted comment, a WordPress post was vulnerable to cross-site scripting. WordPress versions 5.1 and earlier are affected by these bugs, which are fixed in version 5.1.1. Updated versions of WordPress 5.0 and earlier are also available for any users who have not yet updated to 5.1. Props to Simon Scannell of RIPS Technologies who discovered this flaw independent of some work that was being done by members of the core security team. Thank you to all of the reporters for privately disclosing the vulnerabilities, which gave us time to fix them before WordPress sites could be attacked.

WordSphere, we are here to change your WordPress experience “Forever”

Image
WordSphere, one of the premier WordPress design, development & Management Company, specializes in building custom websites on WordPress– one of the world’s trendy web platforms—at a very reasonable market price. Wordsphere is a correct destination for every kind of WordPress associated services of which is its core activity. Besides website development, the company provides a range of seamless and unparalleled services like Content Management, Search Engine Optimization (SEO), and blog and e-commerce advancement, among others. According to the company’s CEO:  “Our company offers a bunch of unmatched services. Our wide range of WordPress services include website designing, website development, website management, e-commerce websites, web applications, graphic designing services, and many more. It is a one-stop solution for every kind of “graphic, web designing and web development requirements.” What makes WordSphere special and extraordinary from other WordPress service provider...

It is time to take your CMS into Mobile friendly view.

Image
Now days the trend of browsing website is changed a lot with the use of smart phones and tablet pcs. A good number of People now more prefer them rather then laptop or desktop to check website. So it’s very important to make any new CMS Ralph Lauren Bambini site keeping this new trend in mind. Not having a mobile friendly CMS means you will certainly have a negative impact in your business. If your website is not properly visible on mobile platforms, there are chances that you may lose a lot of business. Therefore, most of the web development companies have started making all the newly designed websites mobile friendly. If you want to boost your business in a very short span of time you just need to choose the correct tools to make your website into a mobile friendly view. Study shows that every website has 30-40 seconds to attract the visitors or lose them. So it is important to have a stunning website which magnetizes the user attention. Mobile friendly website adjust itself to fit ...

WordPress 4.9.8 Released

Image
  WordPress 4.9.8 is available for download and is a maintenance release. Headlining this version is the “Try Gutenberg” callout. Note that not everyone will see the callout. Its visibility is determined based on certain criteria. Gutenberg Callout in WordPress 4.9.8 WordPress 4.9.8 continues to improve the foundation set forth by the privacy improvements that went into core earlier this year. For example, the type of request that is being confirmed is now included in the subject line for privacy confirmation emails. In total, this release has 46 bug fixes from more than 50 contributors. It was lead by Paul Biron and Joshua Wold . Since 4.9.8 is a maintenance release, sites that are able will update automatically. To see a full list of changes, check out the detailed changelog .