Claire D Photography | Sonoma Marin County CA Photographer bio picture

Welcome!

Hi My name is Claire! I am a mom, and student, oh yeah and a photographer. I love photographing those life moments that slip by all two fast and turning them in to beautiful pieces of art. Check out my facebook page or online website to get to know me more!

Tim, Ginny & Raya | Petaluma family photographer | Claire D Photography

Ok is this not the cutest family or what? Thank you guys so much for letting me take your picture this fall! :)

_MG_4382.jpg
Petaluma family photography.jpg
Petaluma family photography.jpg
Petaluma family photography.jpg
Petaluma family photography.jpg
Petaluma family photography.jpg
_MG_4495.jpg _MG_4531.jpg _MG_4625.jpg
petaluma_child_photographer_claire_d_photo.jpg
_MG_4632.jpg

Portfolio | e mail me | friend me

Tags: , , , , , , ,

Related Posts with Thumbnails

Your email is never published or shared. Required fields are marked *

*

*

Before you submit form:
Human test by Not Captcha

Google's Analytics. After enabling this plugin visit the settings page and enter your Google Analytics' UID and enable logging. * Author: Spiral Web Consulting * Author URI: http://spiralwebconsulting.com/ */ define('GOOGLE_ANALYTICATOR_VERSION', '4.2.1'); # Include Google Analytics Stats widget if ( function_exists('curl_init') ) { # Check if we have a version of WordPress greater than 2.8 if ( function_exists('register_widget') ) { require_once('google-analytics-stats-widget.php'); } else { require_once('google-analytics-stats.php'); $google_analytics_stats = new GoogleStatsWidget(); } } // Constants for enabled/disabled state define("ga_enabled", "enabled", true); define("ga_disabled", "disabled", true); // Defaults, etc. define("key_ga_uid", "ga_uid", true); define("key_ga_status", "ga_status", true); define("key_ga_admin", "ga_admin_status", true); define("key_ga_admin_disable", "ga_admin_disable", true); define("key_ga_admin_level", "ga_admin_level", true); define("key_ga_adsense", "ga_adsense", true); define("key_ga_extra", "ga_extra", true); define("key_ga_extra_after", "ga_extra_after", true); define("key_ga_outbound", "ga_outbound", true); define("key_ga_outbound_prefix", "ga_outbound_prefix", true); define("key_ga_downloads", "ga_downloads", true); define("key_ga_downloads_prefix", "ga_downloads_prefix", true); define("key_ga_footer", "ga_footer", true); define("key_ga_specify_http", "ga_specify_http", true); define("ga_uid_default", "XX-XXXXX-X", true); define("ga_status_default", ga_disabled, true); define("ga_admin_default", ga_enabled, true); define("ga_admin_disable_default", 'remove', true); define("ga_admin_level_default", 8, true); define("ga_adsense_default", "", true); define("ga_extra_default", "", true); define("ga_extra_after_default", "", true); define("ga_outbound_default", ga_enabled, true); define("ga_outbound_prefix_default", 'outgoing', true); define("ga_downloads_default", "", true); define("ga_downloads_prefix_default", "download", true); define("ga_footer_default", ga_disabled, true); define("ga_specify_http_default", "auto", true); // Create the default key and status add_option(key_ga_status, ga_status_default, 'If Google Analytics logging in turned on or off.'); add_option(key_ga_uid, ga_uid_default, 'Your Google Analytics UID.'); add_option(key_ga_admin, ga_admin_default, 'If WordPress admins are counted in Google Analytics.'); add_option(key_ga_admin_disable, ga_admin_disable_default, ''); add_option(key_ga_admin_level, ga_admin_level_default, 'The level to consider a user a WordPress admin.'); add_option(key_ga_adsense, ga_adsense_default, ''); add_option(key_ga_extra, ga_extra_default, 'Addition Google Analytics tracking options'); add_option(key_ga_extra_after, ga_extra_after_default, 'Addition Google Analytics tracking options'); add_option(key_ga_outbound, ga_outbound_default, 'Add tracking of outbound links'); add_option(key_ga_outbound_prefix, ga_outbound_prefix_default, 'Add tracking of outbound links'); add_option(key_ga_downloads, ga_downloads_default, 'Download extensions to track with Google Analyticator'); add_option(key_ga_downloads_prefix, ga_downloads_prefix_default, 'Download extensions to track with Google Analyticator'); add_option(key_ga_footer, ga_footer_default, 'If Google Analyticator is outputting in the footer'); add_option(key_ga_specify_http, ga_specify_http_default, 'Automatically detect the http/https settings'); // Create a option page for settings add_action('admin_init', 'ga_admin_init'); add_action('admin_menu', 'add_ga_option_page'); // Initialize the options function ga_admin_init() { // Register out options so WordPress knows about them if ( function_exists('register_setting') ) { register_setting('google-analyticator', key_ga_status, ''); register_setting('google-analyticator', key_ga_uid, ''); register_setting('google-analyticator', key_ga_admin, ''); register_setting('google-analyticator', key_ga_admin_disable, ''); register_setting('google-analyticator', key_ga_admin_level, ''); register_setting('google-analyticator', key_ga_adsense, ''); register_setting('google-analyticator', key_ga_extra, ''); register_setting('google-analyticator', key_ga_extra_after, ''); register_setting('google-analyticator', key_ga_outbound, ''); register_setting('google-analyticator', key_ga_outbound_prefix, ''); register_setting('google-analyticator', key_ga_downloads, ''); register_setting('google-analyticator', key_ga_downloads_prefix, ''); register_setting('google-analyticator', key_ga_footer, ''); register_setting('google-analyticator', key_ga_specify_http, ''); } } // Initialize outbound link tracking add_action('init', 'ga_outgoing_links'); // Hook in the options page function function add_ga_option_page() { global $wpdb; add_options_page('Google Analyticator Settings', 'Google Analytics', 8, basename(__FILE__), 'ga_options_page'); } function ga_options_page() { // If we are a postback, store the options if (isset($_POST['info_update'])) { // if ( wp_verify_nonce($_POST['ga-nonce-key'], 'google-analyticator') ) { // Update the status $ga_status = $_POST[key_ga_status]; if (($ga_status != ga_enabled) && ($ga_status != ga_disabled)) $ga_status = ga_status_default; update_option(key_ga_status, $ga_status); // Update the UID $ga_uid = $_POST[key_ga_uid]; if ($ga_uid == '') $ga_uid = ga_uid_default; update_option(key_ga_uid, $ga_uid); // Update the admin logging $ga_admin = $_POST[key_ga_admin]; if (($ga_admin != ga_enabled) && ($ga_admin != ga_disabled)) $ga_admin = ga_admin_default; update_option(key_ga_admin, $ga_admin); // Update the admin disable setting $ga_admin_disable = $_POST[key_ga_admin_disable]; if ( $ga_admin_disable == '' ) $ga_admin_disable = ga_admin_disable_default; update_option(key_ga_admin_disable, $ga_admin_disable); // Update the admin level $ga_admin_level = $_POST[key_ga_admin_level]; if ( $ga_admin_level == '' ) $ga_admin_level = ga_admin_level_default; update_option(key_ga_admin_level, $ga_admin_level); // Update the extra tracking code $ga_extra = $_POST[key_ga_extra]; update_option(key_ga_extra, $ga_extra); // Update the extra after tracking code $ga_extra_after = $_POST[key_ga_extra_after]; update_option(key_ga_extra_after, $ga_extra_after); // Update the adsense key $ga_adsense = $_POST[key_ga_adsense]; update_option(key_ga_adsense, $ga_adsense); // Update the outbound tracking $ga_outbound = $_POST[key_ga_outbound]; if (($ga_outbound != ga_enabled) && ($ga_outbound != ga_disabled)) $ga_outbound = ga_outbound_default; update_option(key_ga_outbound, $ga_outbound); // Update the outbound prefix $ga_outbound_prefix = $_POST[key_ga_outbound_prefix]; if ($ga_outbound_prefix == '') $ga_outbound_prefix = ga_outbound_prefix_default; update_option(key_ga_outbound_prefix, $ga_outbound_prefix); // Update the download tracking code $ga_downloads = $_POST[key_ga_downloads]; update_option(key_ga_downloads, $ga_downloads); // Update the download prefix $ga_downloads_prefix = $_POST[key_ga_downloads_prefix]; if ($ga_downloads_prefix == '') $ga_downloads_prefix = ga_downloads_prefix_default; update_option(key_ga_downloads_prefix, $ga_downloads_prefix); // Update the footer $ga_footer = $_POST[key_ga_footer]; if (($ga_footer != ga_enabled) && ($ga_footer != ga_disabled)) $ga_footer = ga_footer_default; update_option(key_ga_footer, $ga_footer); // Update the HTTP status $ga_specify_http = $_POST[key_ga_specify_http]; if ( $ga_specify_http == '' ) $ga_specify_http = 'auto'; update_option(key_ga_specify_http, $ga_specify_http); # Update the stat options update_option('google_stats_user', $_POST['google_stats_user']); update_option('google_stats_password', $_POST['google_stats_password']); // Give an updated message echo "

Google Analyticator settings saved.

"; // } } // Output the options page ?>

Google Analyticator Settings

Google Analyticator is brought to you for free by Spiral Web Consulting. Spiral Web Consulting is a small web development firm specializing in PHP development. Visit our website to learn more, and don't hesitate to ask us to develop your next big WordPress plugin idea.

Basic Settings

Google Analytics integration is currently DISABLED.
Google Analytics integration is currently enabled, but you did not enter a UID. Tracking will not occur.
\n"; echo "\n"; echo "\n"; echo "\n"; ?>
\n"; ?>

Enter your Google Analytics' UID in this box. The UID is needed for Google Analytics to log your website stats. Your UID can be found by looking in the JavaScript Google Analytics gives you to put on your page. Look for your UID in between _uacct = "UA-11111-1"; in the JavaScript. In this example you would put UA-11111-1 in the UID box.

Advanced Settings


Your Google Analytics account's username. This is needed to authenticate with Google for use with the stats widget.

Your Google Analytics account's password. This is needed to authenticate with Google for use with the stats widget.
\n"; echo "\n"; echo "\n"; echo "\n"; ?>

Disabling this option will prevent all logged in WordPress admins from showing up on your Google Analytics reports. A WordPress admin is defined as a user with a level \n"; ?> or higher. Your user level is .

\n"; echo "\n"; echo "\n"; echo "\n"; ?>

Selecting the "Remove" option will physically remove the tracking code from logged in admin users. Selecting the "Use 'admin' variable" option will assign a variable called 'admin' to logged in admin users. This option will allow Google Analytics' site overlay feature to work, but you will have to manually configure Google Analytics to exclude tracking from hits with the 'admin' variable.

\n"; echo "\n"; echo "\n"; echo "\n"; ?>

Enabling this option will insert the Google Analytics tracking code in your site's footer instead of your header. This will speed up your page loading if turned on. Not all themes support code in the footer, so if you turn this option on, be sure to check the Analytics code is still displayed on your site.

\n"; echo "\n"; echo "\n"; echo "\n"; ?>

Disabling this option will turn off the tracking of outbound links. It's recommended not to disable this option unless you're a privacy advocate (now why would you be using Google Analytics in the first place?) or it's causing some kind of weird issue.

\n"; ?>

Enter a name for the section tracked external links will appear under.

\n"; ?>

Enter any extensions of files you would like to be tracked as a download. For example to track all MP3s and PDFs enter mp3,pdf. Outbound link tracking must be enabled for downloads to be tracked.

\n"; ?>

Enter a name for the section tracked download links will appear under.

\n"; ?>

Enter your Google Adsense ID assigned by Google Analytics in this box. This enables Analytics tracking of Adsense information if your Adsense and Analytics accounts are linked. Note: Google recommends the Analytics tracking code is placed in the header with this option enabled, however, a fix is included in this plugin. To follow the official specs, do not enable footer tracking.

"; echo stripslashes(get_option(key_ga_extra))."\n"; ?>

Enter any additional lines of tracking code that you would like to include in the Google Analytics tracking script. The code in this section will be displayed before the Google Analytics tracker is initialized. Read Google Analytics tracker manual to learn what code goes here and how to use it.

"; echo stripslashes(get_option(key_ga_extra_after))."\n"; ?>

Enter any additional lines of tracking code that you would like to include in the Google Analytics tracking script. The code in this section will be displayed after the Google Analytics tracker is initialized. Read Google Analytics tracker manual to learn what code goes here and how to use it.

\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; ?>

Explicitly set the type of HTTP connection your website uses. Setting this option instead of relying on the auto detect may resolve the _gat is undefined error message.

\n"; echo ' \n\n"; } } } } // The guts of the Google Analytics script function add_google_analytics() { global $ga_in_footer; $uid = stripslashes(get_option(key_ga_uid)); $extra = stripslashes(get_option(key_ga_extra)); $extra_after = stripslashes(get_option(key_ga_extra_after)); $extensions = str_replace (",", "|", get_option(key_ga_downloads)); // If GA is enabled and has a valid key if ( (get_option(key_ga_status) != ga_disabled ) && ( $uid != "XX-XXXXX-X" )) { // Display page tracking if user is not an admin if ( ( get_option(key_ga_admin) == ga_enabled || !current_user_can('level_' . get_option(key_ga_admin_level)) ) && get_option(key_ga_admin_disable) == 'remove' || get_option(key_ga_admin_disable) != 'remove' ) { echo "\n"; # Google Adsense data if enabled if ( get_option(key_ga_adsense) != '' && !$ga_in_footer ) echo ' \n\n"; // Pick the HTTP connection if ( get_option(key_ga_specify_http) == 'http' ) { echo " \n\n"; } elseif ( get_option(key_ga_specify_http) == 'https' ) { echo " \n\n"; } else { echo " \n\n"; } echo " \n"; // Include the file types to track $extensions = explode(',', stripslashes(get_option(key_ga_downloads))); $ext = ""; foreach ( $extensions AS $extension ) $ext .= "'$extension',"; $ext = substr($ext, 0, -1); // Include the link tracking prefixes $outbound_prefix = stripslashes(get_option(key_ga_outbound_prefix)); $downloads_prefix = stripslashes(get_option(key_ga_downloads_prefix)); ?>