Tag: Wordpress

Some websites have a corporate partner and want a second logo, but all of you know WordPress has only a primary logo and want to find a tip to solve this issue. To add a second logo in the WordPress Customizer, follow these steps: Using customize_register in functions.php register second logo in function.php function mytheme_customize_register( […]

To loop posts under categories, you should know something. get_categories($args): Arguments to retrieve categories and we want to return array List of category objects that ‘parent’ => 0 . $categories = get_categories(array( ‘parent’ => 0, ‘order’=>’DESC’, )); foreach ( $categoriesas$category ): loop category , show category name and add herf for category […]

On June 24, 2024, WordPress 6.5.5 was released to the public. This release features three security fixes. Because this is a security release, it is recommended that you update your sites immediately. This minor release also includes 3 bug fixes in Core. The security team would like to thank the following people for responsibly reporting vulnerabilities and allowing them to be […]

The meta title is the HTML element that labels a webpage and appears in the browser tab and search engine results pages. Generally, when we optimize your website with PageSpeed Insights, you will see a missing <title> in the result. If you use WordPress, you can solve this problem by doing as below: Method 1: […]

What Are HTTP Security Headers? With the use of HTTP security headers, your website’s server can thwart typical security risks before they have a chance to compromise your website. Your web server replies to the user’s browser with an HTTP header when they visit your WordPress website. Browsers can learn about error codes, cache control, […]

hello guide, we will show you how to set up Microsoft Office 365 for WordPress email. first, we need to setup office 365 for sending mails from website and added the code to functions.php and wp-config.php. we will show you about 2 steps of configuration: configure in wp-config.php // Define constants for SMTP settings define( […]

Everyone is finding about plugins that provide you with the ability to customize, edit, or personalize your WordPress admin panel. The plugins have a lot, and you’re not sure which one to choose to customize your admin interface. Below is shown you how to customize your WordPress, easy, fast and free: Adminify Plugin To download […]

WordPress 6.3 beta be released yesterday, on August 8th, 2023.In this content, we are going to look into what features are coming in WordPress 6.3 with details.This momentous release opens new possibilities for the creative expression of designers, creators, and builders. Powerful tools and refined controls give users confidence and allow them to easily manage […]

Starting a blog is actually really straightforward; we can work everywhere, and the content should describe you. The requirement is to do as below: Buy a domain name, input your favorite name, and describe your blog name. Generally, if you have a new hosting account and some DNS, it will be free for a year. […]

Displays a paginated navigation to next/previous set of posts, when applicable. Displays pagination with additional page links <?php the_posts_pagination( array( ‘mid_size’ => 2 ) ); ?> Displays pagination with alternative prev/next text <?php the_posts_pagination( array( ‘format’ => ‘page/%#%/’, ‘mid_size’ => 2, ‘prev_text’ => __( ‘<span class=”icon-left”></span>’, ‘textdomain’ ), //set your back icon ‘next_text’ => __( […]

Free source code with WordPress for listing all categories and the responsive interface. We use PHP code, have a beautiful style, using the bootstrap and please check the code like below. <?php $args = array( ‘orderby’ => ‘name’, ‘parent’ => 0, ‘order’ => ‘ASC’ ); $categories = get_categories( $args );?> <div class=”row”> […]

This is a gathering to celebrate the 20th Anniversary of WordPress (27 May 2003 – 27 May 2023). This gathering will be celebrated on Saturday 27th May, 2023 at SalaCyber (map), from 2 PM to 5 PM. The meetup’s agenda will include: 1. A brief summary of WordPress history. 2. A brief summary of the Cambodian WordPress […]

A table of contents is a list of jump links that lead to different sections on a page or post. there is a good plugin and I want share it to you. I have researched and see ,it have good rating from user. there are 400,000+ people install it. check it on this link https://wordpress.org/plugins/easy-table-of-contents/ . Plugin […]

Login/SignUp page was used default wordpress logo and we want to see our logo instead. I have 2 methods to show you and solve this problem. Function.php use wordpress plugin Method 1:Function.php code-add some code add this code in function.php, this logo is dynamic and it was taken by theme logo. Go to Appearance → Customize and click on […]

getting all tags and have some style in Worpress as below code. I hope this code can help you. <ul class=”tag-ul”> <?php $tags = get_tags(‘post_tag’); if ( $tags ) : foreach ( $tags as $tag ) : ?> <li class=”tag-list”> <a class=”tag” href=”<?php echo esc_url( get_tag_link( $tag->term_id ) ); ?>” title=”<?php echo esc_attr( $tag->name ); […]