
We build highly customized sites that are designed to reflect the owner’s aesthetic sensibilities, anticipate growth and modification, and provide an optimized experience for human artificial users.
Whether it be a fresh new website, enhancing performance and functionality of an existing website or recovery from threat or malfunction, our process ensures an efficient environment that follows best practices while being easy to work with.
We have proven that highly customized sites do not need to be complicated to manage or difficult to navigate, we make the complex simple and intuitively comprehensible.
We provide a stable, flexible and secure platform along with the support and training needed so that you may confidently manage your message!
-
Function: Add styles to WYSIWYG editor
will be seen in styles dropdown in the editor /**— inserts the function button (dropdown styles for list below) –*/ add_filter( ‘mce_buttons_2’, ‘my_mce_buttons_2’ ); function my_mce_buttons_2( $buttons ) { array_unshift( $buttons, ‘styleselect’ ); return $buttons; } /*— INSERTS THE STYLES —*/ add_filter( ‘tiny_mce_before_init’, ‘my_mce_before_init’ ); function my_mce_before_init( $settings ) { $style_formats = array( array( ‘title’…
-
Function: Add image size
New size will show as media optionsee: https://pippinsplugins.com/add-custom-image-sizes-to-media-uploader/ function pw_add_image_sizes() { add_image_size( ‘example-thumb’, 300, 300, true ); } add_action( ‘init’, ‘pw_add_image_sizes’ ); function pw_show_image_sizes($sizes) { $sizes[‘example-thumb’] = __( ‘Example Thumb’, ‘pippin’ ); return $sizes; } add_filter(‘image_size_names_choose’, ‘pw_show_image_sizes’); final line adds the size option in the media manager
-
Exclude a single taxonomy term in an array of all posts of a given custom post type
‘casestudy_type’, ‘showposts’ => 10 ) ); ?> The query above looks for the post type “casestudy_type” ans shows the 10 most recent posts regardless of taxonomy membership ‘team_type’, ‘showposts’ => -1, ‘tax_query’ => array( array( ‘taxonomy’ => ‘department’, ‘field’ => ‘id’, ‘terms’ => array(18), ‘operator’ => ‘NOT IN’, ), ), ) ); ?> The query…