PluginProbe
WebberZone Top 10 — Popular Posts / 4.4.1
WebberZone Top 10 — Popular Posts v4.4.1
4.5.1 4.5.0 4.4.3 4.4.2 4.4.1 4.4.0 4.3.4 4.3.3 4.3.2 4.3.1 4.3.0 trunk 1.0 1.0.1 1.1 1.2 1.3 1.4 1.4.1 1.5 1.5.1 1.5.2 1.5.3 1.6 1.6.1 All 117 releases
top-10 / includes / frontend / blocks / src / popular-posts / components / other-attributes-control.js

other-attributes-control.js in WebberZone Top 10 — Popular Posts 4.4.1, at includes/frontend/blocks/src/popular-posts/components/other-attributes-control.js

17 lines 461 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { __ } from '@wordpress/i18n';
2 import { PanelRow, TextareaControl } from '@wordpress/components';
3
4 export const OtherAttributesControl = ({ value, onChange }) => (
5 <PanelRow>
6 <TextareaControl
7 label={__('Other attributes', 'top-10')}
8 value={value}
9 onChange={onChange}
10 help={__(
11 'Enter other attributes in a URL-style string-query. e.g. post_types=post,page&link_nofollow=1&exclude_post_ids=5,6',
12 'top-10'
13 )}
14 />
15 </PanelRow>
16 );
17