This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
global $acf_recalc_settings; | |
// IMPORTANT: Customize these settings for your website. | |
$acf_recalc_settings = array( | |
// How many updates to do each page load. As of November 2018, Google's GeoLocation API limit is 100 per second. | |
'posts_per_run' => 16, | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Returns dimensions (width and height) of a given svg (by url) | |
* | |
* @param string $image_url | |
* @source https://stackoverflow.com/a/6532357/9214537 | |
* | |
* @return string | |
*/ | |
function get_svg_dimensions( string $image_url ): string { | |
$parsed_xml = simplexml_load_string( file_get_contents( $image_url ) ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# column_name - column name filter by | |
# column_name_2 - column name to concat | |
# table_name - table name :) | |
SELECT column_name, | |
GROUP_CONCAT(DISTINCT column_name_2 SEPARATOR ',') | |
FROM table_name | |
GROUP BY column_name; |
OlderNewer