New to Translating WordPress? Read through our Translator Handbook to get started. Hide

Translation of Development Readme (trunk): Dutch (Formal)

1 2 3 8
Prio Original string Translation
Widget Logic lets you control on which pages widgets appear using WP's conditional tags.
Priority: high
You have to log in to add a translation. Details
Widget Logic lets you control on which pages widgets appear using WP's conditional tags.
Comment

Short description.

You have to log in to edit this translation.

Widget Logic
Priority: high
You have to log in to add a translation. Details
Widget Logic
Comment

Plugin name.

You have to log in to edit this translation.

The 'widget_logic_eval_override' filter You have to log in to add a translation. Details
The 'widget_logic_eval_override' filter
Comment

Found in description header.

You have to log in to edit this translation.

Before the Widget Logic code is evaluated for each widget, the text of the Widget Logic code is passed through this filter. If the filter returns a BOOLEAN result, this is used instead to determine if the widget is visible. Return TRUE for visible. You have to log in to add a translation. Details
Before the Widget Logic code is evaluated for each widget, the text of the Widget Logic code is passed through this filter. If the filter returns a BOOLEAN result, this is used instead to determine if the widget is visible. Return TRUE for visible.
Comment

Found in description paragraph.

You have to log in to edit this translation.

Note the extra ';' on the end where there is an explicit 'return'. You have to log in to add a translation. Details
Note the extra ';' on the end where there is an explicit 'return'.
Comment

Found in description paragraph.

You have to log in to edit this translation.

There are lots of great code examples on the WP forums, and on WP sites across the net. But the WP Codex is also full of good examples to adapt, such as <a href="http://codex.wordpress.org/Template_Tags/in_category#Testing_if_a_post_is_in_a_descendant_category">Test if post is in a descendent category</a>. You have to log in to add a translation. Details
There are lots of great code examples on the WP forums, and on WP sites across the net. But the WP Codex is also full of good examples to adapt, such as <a href="http://codex.wordpress.org/Template_Tags/in_category#Testing_if_a_post_is_in_a_descendant_category">Test if post is in a descendent category</a>.
Comment

Found in description paragraph.

You have to log in to edit this translation.

Make good use of <a href="http://codex.wordpress.org/Conditional_Tags">WP's own conditional tags</a>. You can vary and combine code using: You have to log in to add a translation. Details
Make good use of <a href="http://codex.wordpress.org/Conditional_Tags">WP's own conditional tags</a>. You can vary and combine code using:
Comment

Found in description paragraph.

You have to log in to edit this translation.

The text in the 'Widget logic' field can be full PHP code and should return 'true' when you need the widget to appear. If there is no 'return' in the text, an implicit 'return' is added to the start and a ';' is added on the end. (This is just to make single statements like is_home() more convenient.) You have to log in to add a translation. Details
The text in the 'Widget logic' field can be full PHP code and should return 'true' when you need the widget to appear. If there is no 'return' in the text, an implicit 'return' is added to the start and a ';' is added on the end. (This is just to make single statements like is_home() more convenient.)
Comment

Found in description paragraph.

You have to log in to edit this translation.

<code>global $post; return (is_page('home') || ($post-&gt;post_parent=="13"));</code> -- home page OR the page that's a child of page 13 You have to log in to add a translation. Details
<code>global $post; return (is_page('home') || ($post-&gt;post_parent=="13"));</code> -- home page OR the page that's a child of page 13
Comment

Found in description list item.

You have to log in to edit this translation.

<code>global $post; return (in_array(77,get_post_ancestors($post)));</code> -- WP page that is a child of page 77 You have to log in to add a translation. Details
<code>global $post; return (in_array(77,get_post_ancestors($post)));</code> -- WP page that is a child of page 77
Comment

Found in description list item.

You have to log in to edit this translation.

<code>is_category() &amp;&amp; in_array($cat, get_term_children( 5, 'category'))</code> -- category page that's a descendent of category 5 You have to log in to add a translation. Details
<code>is_category() &amp;&amp; in_array($cat, get_term_children( 5, 'category'))</code> -- category page that's a descendent of category 5
Comment

Found in description list item.

You have to log in to edit this translation.

<code>strpos($_SERVER['HTTP_REFERER'], "google.com")!=false</code> -- widget to show when clicked through from a google search You have to log in to add a translation. Details
<code>strpos($_SERVER['HTTP_REFERER'], "google.com")!=false</code> -- widget to show when clicked through from a google search
Comment

Found in description list item.

You have to log in to edit this translation.

<code>current_user_can('level_10')</code> -- admin only widget You have to log in to add a translation. Details
<code>current_user_can('level_10')</code> -- admin only widget
Comment

Found in description list item.

You have to log in to edit this translation.

<code>is_single() &amp;&amp; in_category('baked-goods')</code> -- single post that's in the category with this slug You have to log in to add a translation. Details
<code>is_single() &amp;&amp; in_category('baked-goods')</code> -- single post that's in the category with this slug
Comment

Found in description list item.

You have to log in to edit this translation.

<code>is_category(array(5,9,10,11))</code> -- category page of one of the given category IDs You have to log in to add a translation. Details
<code>is_category(array(5,9,10,11))</code> -- category page of one of the given category IDs
Comment

Found in description list item.

You have to log in to edit this translation.

Legend:
Current
Waiting
Rejected
Fuzzy
Old
Changes requested
With warnings
1 2 3 8

Export as