Saturday , April 19 2025

iryna

Hi there! My name is Iryna, I am a web developer from Ukraine. While working on freelance projects I often face different technical issues and in this blog I publish articles on how to solve them. I am also interested in digital drawing and in this blog you will find brief tutorials that helped me and hopefully can help you as well.

How to display a shortcode in a WordPress theme

Shortcodes make our life a lot easier, they are often generated by plugins and all we have to do is display the shortcode in the WordPress theme. Use code like this: <?php echo do_shortcode( '[shortcode]' );?> Where instead of shortcode write your shortcode name, and do not forget about the …

Read More »

How to get value from ACF plugin field

The ACF plugin is needed to create and display additional fields for articles. For example, we need to add the color field to articles and display it in the template. The procedure is standard: go to Plugins – Add new – search for ACF (Advanced Custom Fields), install and activate. …

Read More »

If the link contains the word

The case: If a word occurs in the URL, then you need to display some text. For example, if the URL contains “hahaha”, then on the page you need to display the text “description of the text hahaha”. PHP solution: <?php if(strpos($_SERVER['REQUEST_URI'], 'hahaha') !== false){ echo "description of the text …

Read More »

How to display Breadcrumb NavXT in WordPress theme

In this article, I do not want to describe the detailed process of installing the Breadcrumb NavXT plugin, but if someone really needs it: Go to the WordPress panel in the Plugins section – Add New. Search for Breadcrumb NavXT, install and activate it. This plugin will not be automatically …

Read More »

How to take a screenshot on a Macbook

Most often, I use the Screenfly Chrome extension for screenshots if I need to save a screenshot of the page locally, or the Joxy extension if I need to send a screenshot to someone. But sometimes I have to take screenshots using the Macbook itself, and I persistently forget the …

Read More »

How to find all screenshots on your Macbook

By default, on a Mac, screenshots taken with Shift Command 4 are saved to the desktop. Very often they are renamed there, very often copied to other folders and renamed. The Mac has a great way to find all the screenshots ever taken on that computer. Open Finder, In the …

Read More »