WordPress Codesnippets

The Easiest Way To Find WordPress Code Solutions

Latest snippets

get directory url

The get_template_directory_uri function is used to get the URL of the current theme’s directory. This is useful for getting the

Read more

get favicon

link rel=”icon” href=”‘.$favicon.’”>’; ?> The code above displays a WordPress site’s favicon.

Read more

get $_get

is a PHP super global variable which is used to collect data from a form which is sent with GET

Read more

get data from google sheet

E2upms’; $range = ‘Class Data!A2:E’; $response = $service->spreadsheets_values->get($spreadsheetId, $range); $values = $response->getValues(); if (count($values) == 0) { print “No data

Read more