Web & Blockchain
-
Agora Web Designs
- Macedonia
- https://www.agorawebdesigns.com/
- https://www.codeable.io/developers/viktor-veljanovski
Pinned Loading
-
-
Set proper WordPress file system per...
Set proper WordPress file system permissions. 1chown www-data:www-data -R * # Let Apache be owner
2find . -type d -exec chmod 755 {} \; # Change directory permissions rwxr-xr-x
3find . -type f -exec chmod 644 {} \; # Change file permissions rw-r--r--
-
WordPress - Remove Version Number
WordPress - Remove Version Number 1function remove_wp_version() {
2return '';
3}
4add_filter('the_generator', 'remove_wp_version');
-
WordPress - Remove Query Strings
WordPress - Remove Query Strings 1function remove_query_strings( $src ){
2$parts = explode( '?', $src );
3return $parts[0];
4}
5add_filter( 'script_loader_src', 'remove_query_strings', 15, 1 );
-
How to add html code to WordPress <h...
How to add html code to WordPress <head> using wp_head hook. 1function insert_html_in_header() {
2echo '<<< html here >>>';
3}
4/* Admin Dashboard */
5add_action( 'admin_head', 'insert_html_in_header' );
-
gdarko/wp-mkd-air-quality
gdarko/wp-mkd-air-quality PublicMacedonia Air Quality charts and map for WordPress
JavaScript 2
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.