WordPress – Custom thumbnails – properly sized images

wordpress custom sized thumbnails

Today we will see the WordPress custom thumbnails. The loading speed of a site is largely due to the correct size and optimization of the images. It is always advisable to publish images and thumbnails of adequate size to consume less traffic on the data network and reduce loading times. […]

Read More…

Expose REST services with Drupal

Let’s create REST services with Drupal.You may need to export the power of Drupal to deliver content to multiple systems. This possibly even in multiple different technologies. In these cases it can be useful to use a more generic language to transmit this content, such as JSON.Drupal allows the delivery […]

Read More…

PHP 7 operators: null coalescing (??) and space ship (<=>)

There are two changes regarding PHP 7, concerning two new operators that have been very useful to me during my years in PHP. The “null coalescing” Operator: ?? In an expression it will return the left operand if this is not NULL, if this condition does not occur the right […]

Read More…

Create and add a new Drupal custom module

create and add a custom module

One of the best features of Drupal is the module system, which allows its extreme modularity and versatility on any occasion.This has allowed over the years the creation of hundreds of modules by groups of developers who carried out only once the basic tasks for the creation and maintenance of […]

Read More…

Create a WordPress plugin

Wordpress - create a plugin

It is not uncommon to look for the perfect functionality for your blog/site in WordPress but not find it because you have too precise an idea of what you would like. It is in these cases that the possibility of infinitely extending WordPress comes to our rescue, adding features that […]

Read More…