Skip to content
This repository has been archived by the owner on Jan 28, 2021. It is now read-only.

Commit

Permalink
updated jscolor, added close-button to color-picker
Browse files Browse the repository at this point in the history
  • Loading branch information
bonny committed Sep 2, 2012
1 parent 7c1adb3 commit 125662e
Show file tree
Hide file tree
Showing 3 changed files with 160 additions and 49 deletions.
5 changes: 3 additions & 2 deletions functions.php
Expand Up @@ -938,8 +938,9 @@ function simple_fields_values($field_slug = NULL, $post_id = NULL, $options = NU


// Outputs the names of the post connectors attached to the post you view + outputs the values // Outputs the names of the post connectors attached to the post you view + outputs the values
add_filter("the_content", "simple_fields_value_get_functions_test"); add_filter("the_content", "simple_fields_value_get_functions_test");
function simple_fields_value_get_functions_test($content) { function simple_fields_value_get_functions_test($the_content) {


$output = "";
$output_all = ""; $output_all = "";
$field_count = 0; $field_count = 0;


Expand Down Expand Up @@ -995,7 +996,7 @@ function simple_fields_value_get_functions_test($content) {
'; ';
} }


return $content . $output_all; return $the_content . $output_all;
} }


} }
Expand Down

0 comments on commit 125662e

Please sign in to comment.