Skip to content

Instantly share code, notes, and snippets.

View francescocarlucci's full-sized avatar
🌏
Working from Planet Earth

Francesco Carlucci francescocarlucci

🌏
Working from Planet Earth
View GitHub Profile
#!/bin/bash
if [[ ! "$(/usr/sbin/service mysql status)" =~ "running" ]]
then
/usr/sbin/service mysql restart
echo "$(date) - mysql restarted." >> /var/log/restart_mysql.log
fi
add_filter('ninja_forms_render_options','ninja_forms_pre_population_callback', 10, 2);
function ninja_forms_pre_population_callback($options, $settings) {
// target only the field with this key
if( $settings['key'] == 'my_field_key' ) {
// write the query to fetch the data
$args = array(
'post_type' => 'post',
'post_status' => 'publish'