Quick tip: set post connector using PHP code

I actually wrote about this back in April, but it’s such a nice feature that it’s worth mentioning again (also: I had forgot about this myself!):

You can use PHP to set the Post Connector for a post. This has some nice benefits:

  • Post Connectors can be set automatically (no user has to select something is a dropdown)
  • Post Connectors can be set based on Post ID, Tags, Categories, what ever you want or need
  • If you set the Post Connector using code you can then hide the post connector dropdown completely from the edit post screen = much cleaner and more easy to use interface

Some code examples to get you started:

<?php
/**
* Set post connector for a post using PHP.
*
* This way it's possible to select a post connector for posts based on their ID, categories, tags, post type, and so on
*
* This function is using the filter simple_fields_get_selected_connector_for_post that is called when
* simple fields determines what connector it should use for each post.
* It passes the connector slug and the post object and you should return the slug of the conector that you want to use.
*
*/
function example_simple_fields_modify_connector_for_post($connector, $post) {
// Some examples to set the post connector comes here
// Plesae note that your're not limited to these,
// you can basically check everything for a post, like terms, categories, featured image, title...
if ( "attachments" === $post->post_type ) {
// If post type is "attachments" then use the attachments-post connector
$connector = "post_connector_attachments";
} else if ( 72 === $post->post_parent ) {
// if post has a parent post with id 72 then use another connector
$connector = "my_other_post_connector";
} else if ( "about" === $post->post_name ) {
// if post has a the slug "about"
$connector = "about_page_post_connector";
}
return $connector;
}
add_filter("simple_fields_get_selected_connector_for_post", "example_simple_fields_modify_connector_for_post", 10, 2);
/**
* By default Simple Fields shows a meta box on the edit post screen with a dropdown with
* all the post connectors that are possible to set for that post.
*
* By using the filter "simple_fields_add_post_edit_side_field_settings" we can hide that box
* and making the GUI a bit cleaner.
*
* Works best if you use the simple_fields_get_selected_connector_for_post-filter above to set
* the post connector using PHP, since then the user should not be able to try to change the
* connector to something else.
*
*/
function example_simple_fields_modify_post_edit_side_field_settings($bool_add, $post) {
// Don't show the dropdown if the current post has id 123
if ( 123 === $post->ID ) {
$bool_add = false;
}
return $bool_add;
}
add_filter("simple_fields_add_post_edit_side_field_settings", "example_simple_fields_modify_post_edit_side_field_settings", 10, 2);

Now easier than ever to use wp_query and sort posts using values from a field in Simple Fields

Today version 1.3.3 of Simple Fields is out. The full changelog is available at WordPress.org.

This update features a new and simplified way to sort posts using wp_query.

When using wp_query to fetch posts sorted by meta values you usually do something like this:

$args = array(
	"orderby" => "meta_value",
	"meta_key" => "my_custom_field_key",
	"order" => "asc"
);
$my_query = new WP_Query($args);

Then if you wanted to sort posts by a value that was stored by Simple Fields then you had to find out what the meta key for the field was and then use that in the query like this:

$args = array(
	"orderby" => "meta_value",
	"meta_key" => "_simple_fields_fieldGroupID_2_fieldID_0_numInSet_0",
	"order" => "asc"
);
$my_query = new WP_Query($args);

Pretty much the same, but a bit more difficult since you have to get the meta key and then you have to keep in mind that the meta key can change if you have a dev, stage and production server.

Here’s where the latest update come into play. Since we know the slugs for the field group and the field (we kinda entered them ourself in the GUI or using code, didn’t we?) we can use those slugs instead:

$args = array(
	"orderby" => "meta_value",
	"sf_meta_key" => "my_field_group_slug/my_field_slug",
	"order" => "asc"
);
$my_query = new WP_Query($args);

And boom! Simple Fields automatically gets the correct custom fields key and places that in the “meta_key” argument. No more worries about changing field ids between development and productions servers.

Altough it works great, you have yo remember that different field types store their values in different ways. it works really good for plain text, date/timepicker, and probably some more too, but there are field types that store their values as serialized objects and so on.

Oh, this update also adds the method get_field_by_fieldgroup_and_slug_string() that you can use yourself in your code if you for any reason want to get information about a field based on the slugs of the field and the field group is belongs to.

global $sf;
$field_array = $sf->get_field_by_fieldgroup_and_slug_string("my_fieldgroup_slug/my_field_slug");
echo "Here is some info about the field:";
print_r($field_array);

Get maximum number of attached fields to any post

In a recent project I needed to get the maximum number of attached files to any post. The files were of course added to my posts by using Simple Fields and a repeatable field group.

Since this was the first time I’ve ever needed to do this, there was no built in functions for this.

Anyway, turned out to be pretty straightforward. The solution for me was this: Continue reading