File manager - Edit - /var/www/html/wordpress/.tmb/wp-admin.zip
Back
PK �Z�ZN��$�) �) edit-tag-form.phpnu ��̗� <?php /** * Edit tag form for inclusion in administration panels. * * @package WordPress * @subpackage Administration */ // Don't load directly. if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } // Back compat hooks. if ( 'category' === $taxonomy ) { /** * Fires before the Edit Category form. * * @since 2.1.0 * @deprecated 3.0.0 Use {@see '{$taxonomy}_pre_edit_form'} instead. * * @param WP_Term $tag Current category term object. */ do_action_deprecated( 'edit_category_form_pre', array( $tag ), '3.0.0', '{$taxonomy}_pre_edit_form' ); } elseif ( 'link_category' === $taxonomy ) { /** * Fires before the Edit Link Category form. * * @since 2.3.0 * @deprecated 3.0.0 Use {@see '{$taxonomy}_pre_edit_form'} instead. * * @param WP_Term $tag Current link category term object. */ do_action_deprecated( 'edit_link_category_form_pre', array( $tag ), '3.0.0', '{$taxonomy}_pre_edit_form' ); } else { /** * Fires before the Edit Tag form. * * @since 2.5.0 * @deprecated 3.0.0 Use {@see '{$taxonomy}_pre_edit_form'} instead. * * @param WP_Term $tag Current tag term object. */ do_action_deprecated( 'edit_tag_form_pre', array( $tag ), '3.0.0', '{$taxonomy}_pre_edit_form' ); } $wp_http_referer = ! empty( $_REQUEST['wp_http_referer'] ) ? sanitize_text_field( $_REQUEST['wp_http_referer'] ) : ''; $wp_http_referer = remove_query_arg( array( 'action', 'message', 'tag_ID' ), $wp_http_referer ); // Also used by Edit Tags. require_once ABSPATH . 'wp-admin/includes/edit-tag-messages.php'; /** * Fires before the Edit Term form for all taxonomies. * * The dynamic portion of the hook name, `$taxonomy`, refers to * the taxonomy slug. * * Possible hook names include: * * - `category_pre_edit_form` * - `post_tag_pre_edit_form` * * @since 3.0.0 * * @param WP_Term $tag Current taxonomy term object. * @param string $taxonomy Current $taxonomy slug. */ do_action( "{$taxonomy}_pre_edit_form", $tag, $taxonomy ); ?> <div class="wrap"> <h1><?php echo $tax->labels->edit_item; ?></h1> <?php $class = ( isset( $_REQUEST['error'] ) ) ? 'error' : 'success'; if ( $message ) { $message = '<p><strong>' . $message . '</strong></p>'; if ( $wp_http_referer ) { $message .= sprintf( '<p><a href="%1$s">%2$s</a></p>', esc_url( wp_validate_redirect( sanitize_url( $wp_http_referer ), admin_url( 'term.php?taxonomy=' . $taxonomy ) ) ), esc_html( $tax->labels->back_to_items ) ); } wp_admin_notice( $message, array( 'type' => $class, 'id' => 'message', 'paragraph_wrap' => false, ) ); } ?> <div id="ajax-response"></div> <form name="edittag" id="edittag" method="post" action="edit-tags.php" class="validate" <?php /** * Fires inside the Edit Term form tag. * * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug. * * Possible hook names include: * * - `category_term_edit_form_tag` * - `post_tag_term_edit_form_tag` * * @since 3.7.0 */ do_action( "{$taxonomy}_term_edit_form_tag" ); ?> > <input type="hidden" name="action" value="editedtag" /> <input type="hidden" name="tag_ID" value="<?php echo esc_attr( $tag_ID ); ?>" /> <input type="hidden" name="taxonomy" value="<?php echo esc_attr( $taxonomy ); ?>" /> <?php wp_original_referer_field( true, 'previous' ); wp_nonce_field( 'update-tag_' . $tag_ID ); /** * Fires at the beginning of the Edit Term form. * * At this point, the required hidden fields and nonces have already been output. * * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug. * * Possible hook names include: * * - `category_term_edit_form_top` * - `post_tag_term_edit_form_top` * * @since 4.5.0 * * @param WP_Term $tag Current taxonomy term object. * @param string $taxonomy Current $taxonomy slug. */ do_action( "{$taxonomy}_term_edit_form_top", $tag, $taxonomy ); $tag_name_value = ''; if ( isset( $tag->name ) ) { $tag_name_value = esc_attr( $tag->name ); } ?> <table class="form-table" role="presentation"> <tr class="form-field form-required term-name-wrap"> <th scope="row"><label for="name"><?php _ex( 'Name', 'term name' ); ?></label></th> <td><input name="name" id="name" type="text" value="<?php echo $tag_name_value; ?>" size="40" aria-required="true" aria-describedby="name-description" /> <p class="description" id="name-description"><?php echo $tax->labels->name_field_description; ?></p></td> </tr> <tr class="form-field term-slug-wrap"> <th scope="row"><label for="slug"><?php _e( 'Slug' ); ?></label></th> <?php /** * Filters the editable slug for a post or term. * * Note: This is a multi-use hook in that it is leveraged both for editable * post URIs and term slugs. * * @since 2.6.0 * @since 4.4.0 The `$tag` parameter was added. * * @param string $slug The editable slug. Will be either a term slug or post URI depending * upon the context in which it is evaluated. * @param WP_Term|WP_Post $tag Term or post object. */ $slug = isset( $tag->slug ) ? apply_filters( 'editable_slug', $tag->slug, $tag ) : ''; ?> <td><input name="slug" id="slug" type="text" value="<?php echo esc_attr( $slug ); ?>" size="40" aria-describedby="slug-description" /> <p class="description" id="slug-description"><?php echo $tax->labels->slug_field_description; ?></p></td> </tr> <?php if ( is_taxonomy_hierarchical( $taxonomy ) ) : ?> <tr class="form-field term-parent-wrap"> <th scope="row"><label for="parent"><?php echo esc_html( $tax->labels->parent_item ); ?></label></th> <td> <?php $dropdown_args = array( 'hide_empty' => 0, 'hide_if_empty' => false, 'taxonomy' => $taxonomy, 'name' => 'parent', 'orderby' => 'name', 'selected' => $tag->parent, 'exclude_tree' => $tag->term_id, 'hierarchical' => true, 'show_option_none' => __( 'None' ), 'aria_describedby' => 'parent-description', ); /** This filter is documented in wp-admin/edit-tags.php */ $dropdown_args = apply_filters( 'taxonomy_parent_dropdown_args', $dropdown_args, $taxonomy, 'edit' ); wp_dropdown_categories( $dropdown_args ); ?> <?php if ( 'category' === $taxonomy ) : ?> <p class="description" id="parent-description"><?php _e( 'Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.' ); ?></p> <?php else : ?> <p class="description" id="parent-description"><?php echo $tax->labels->parent_field_description; ?></p> <?php endif; ?> </td> </tr> <?php endif; // is_taxonomy_hierarchical() ?> <tr class="form-field term-description-wrap"> <th scope="row"><label for="description"><?php _e( 'Description' ); ?></label></th> <td><textarea name="description" id="description" rows="5" cols="50" class="large-text" aria-describedby="description-description"><?php echo $tag->description; // textarea_escaped ?></textarea> <p class="description" id="description-description"><?php echo $tax->labels->desc_field_description; ?></p></td> </tr> <?php // Back compat hooks. if ( 'category' === $taxonomy ) { /** * Fires after the Edit Category form fields are displayed. * * @since 2.9.0 * @deprecated 3.0.0 Use {@see '{$taxonomy}_edit_form_fields'} instead. * * @param WP_Term $tag Current category term object. */ do_action_deprecated( 'edit_category_form_fields', array( $tag ), '3.0.0', '{$taxonomy}_edit_form_fields' ); } elseif ( 'link_category' === $taxonomy ) { /** * Fires after the Edit Link Category form fields are displayed. * * @since 2.9.0 * @deprecated 3.0.0 Use {@see '{$taxonomy}_edit_form_fields'} instead. * * @param WP_Term $tag Current link category term object. */ do_action_deprecated( 'edit_link_category_form_fields', array( $tag ), '3.0.0', '{$taxonomy}_edit_form_fields' ); } else { /** * Fires after the Edit Tag form fields are displayed. * * @since 2.9.0 * @deprecated 3.0.0 Use {@see '{$taxonomy}_edit_form_fields'} instead. * * @param WP_Term $tag Current tag term object. */ do_action_deprecated( 'edit_tag_form_fields', array( $tag ), '3.0.0', '{$taxonomy}_edit_form_fields' ); } /** * Fires after the Edit Term form fields are displayed. * * The dynamic portion of the hook name, `$taxonomy`, refers to * the taxonomy slug. * * Possible hook names include: * * - `category_edit_form_fields` * - `post_tag_edit_form_fields` * * @since 3.0.0 * * @param WP_Term $tag Current taxonomy term object. * @param string $taxonomy Current taxonomy slug. */ do_action( "{$taxonomy}_edit_form_fields", $tag, $taxonomy ); ?> </table> <?php // Back compat hooks. if ( 'category' === $taxonomy ) { /** This action is documented in wp-admin/edit-tags.php */ do_action_deprecated( 'edit_category_form', array( $tag ), '3.0.0', '{$taxonomy}_add_form' ); } elseif ( 'link_category' === $taxonomy ) { /** This action is documented in wp-admin/edit-tags.php */ do_action_deprecated( 'edit_link_category_form', array( $tag ), '3.0.0', '{$taxonomy}_add_form' ); } else { /** * Fires at the end of the Edit Term form. * * @since 2.5.0 * @deprecated 3.0.0 Use {@see '{$taxonomy}_edit_form'} instead. * * @param WP_Term $tag Current taxonomy term object. */ do_action_deprecated( 'edit_tag_form', array( $tag ), '3.0.0', '{$taxonomy}_edit_form' ); } /** * Fires at the end of the Edit Term form for all taxonomies. * * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug. * * Possible hook names include: * * - `category_edit_form` * - `post_tag_edit_form` * * @since 3.0.0 * * @param WP_Term $tag Current taxonomy term object. * @param string $taxonomy Current taxonomy slug. */ do_action( "{$taxonomy}_edit_form", $tag, $taxonomy ); ?> <div class="edit-tag-actions"> <?php submit_button( __( 'Update' ), 'primary', null, false ); ?> <?php if ( current_user_can( 'delete_term', $tag->term_id ) ) : ?> <span id="delete-link"> <a class="delete" href="<?php echo esc_url( admin_url( wp_nonce_url( "edit-tags.php?action=delete&taxonomy=$taxonomy&tag_ID=$tag->term_id", 'delete-tag_' . $tag->term_id ) ) ); ?>"><?php _e( 'Delete' ); ?></a> </span> <?php endif; ?> </div> </form> </div> <?php if ( ! wp_is_mobile() ) : ?> <script type="text/javascript"> try{document.forms.edittag.name.focus();}catch(e){} </script> <?php endif; PK �Z�Zs0�� � images/post-formats32-vs.pngnu ��̗� �PNG IHDR ` �c�� PLTELiqf��9��F��G����L��<r�5|� O�J��K����Ƃ��W�����J��J��L��c�� O�� G��I��O��f��Q��x�� J��d�� I��~��I�� G��f��J�� G��K��J��F��P��O��G�� B��P��e��F��b���ǂ��G����� I��d��H��J��J��f�����b��:r�F��J�����I�����M��^��I��f��O��R��e��[��<r�f��f��f��{��J��b��e��I��{��f��`��e��I��f�����V��P��d��f��B~� F��f��I��G�� K��O��f��V��d��P��f��f��F��R��`��X��;r�<r���=s�I��F�����I������f�����=s���������D��J��(L]'K^���'K^���Y��]��M��Az�Y��?u�X�����|�����R���s����������e����������������������݈������������������������g�������얾���������������������ڮ�ܲ��ⁱ���鋷͝�ի�������������������љ�ӄ���������H��������]�����P��V������ߦ��a��j�������Ԇ�ˢ��K�����x��h��Y��\�������v��o��k�����u�Ę��q��z��B|�}��D���nê �tRNS �,% �> MKF��)]2� �']���ܯ�;� "�-�T���� �UJ..?�3L�Ki�׀t�쀿}���߲6�A;�ƭ�@����؋�̀˹�j�:��7�Ey�|�%f����S�S���~�1� f��jNߕ��c:� IDATx��y|ם��-�ŶR߷c;vb;��nӍ��v��q������I�4m���M�m�>����8�!��I�@ ��m�����m������~�y� ��{#�x�,Z4K^._4s�j�� �3�T�.n�/�k� Ōg�j�u��"�/�0�������0i4fy��T�8�P�a /�!�rQn��o���+] �W��&�T�3�uF�$�+{��y��!�Zkje��T�S�W_��[��SB��g?�'��i@� ��"=�L�FAQ8��3�@�O�LZP�� �?�A��=�!�ӂ�#U�+��R~��ʟ� \I���kS^*T��2��4_�/�/ ̩�Խ�#�E�y�G��ԔI�!�e�P~�V�1�>\��s ��9���� �ϗ�YҪ�3\(c�s��.�3S��f���U�5�;����~�5kn�u�-w�-�(Q���T����$2�� 2���F�@m9�b'#�d�AQ�h�Q���?�W�W�.N�t�3B`nE8H$:F@ƚ��cl��r��t鐁 ��Q�T#A��O��c�6�X-I�T����j�'��p���G� uΩ���)'��U�� ��s�s�����K��9�W=��ȡZ.?���JP�\,���H��4���,� oRE�n��� da�����Ѧ���Ɇ.�`&h���y�B{��PVh(+��TE`����3�0��;+woZu��m��vۚ5w��5�;�1�m�n�|˪Mw�~ K�(�G����յbH �1Ų<��?��3���\��j� Md8CA�pY-�����9�H���N�L&C�#����@� D�7��z}�e���:�4Dw��ׯy;� �g�u�F�^[��h�Q�\uYA��#-L�-�z�� dz�����|�zF��:@���?�Э���Dy�=�)��Nu�Bk=��GUfN�,2k>�~g��dSgK���\.V(�犆�Y�`�+ X�`�*����4ȃ4�B�>W$�3BaD �--�@"*��)P���i�S� 9Baa��0F�c������%J��30��#o������'m�<[��s��}jRޫ��8�����Gώ���zP������:��&Y8�'�+0���@M��"W�r�C�%Wh�N�P�Sc��ùB�ҏ�qg�u惄 +Kc�����<�Fl�*-��v?�܇o9\~=o�~��w+��X���禕�_�PV���o�-&l|m�� STQO��_�q�"�&yE ��q_#˵)^rB C��sm���FL5C����cw�e��Q���C��0c#���`�[anMA��y���� {���Ae�k����*Ք{�<[(O=�{�ѭ���I;��|�5�]�D���,x����/����)v3���0^p�|E��� ���z~}�-�"9{�t*�^g�-9�P ��yp�U`K��V��VhK��^?X`�3�A37� ���mX>Q=FQL�W��y��QZ�bz�̘4�Ii�&�8q[��oc�Jm�`��l�X�����c`���`7��S�n���=d�0촀&@��[Q��t��h"�2��&@�K@7%���)���E��� >X,8-��x<�p��b:ߋ���x\L2#H��\�1`ԴтD ���7k��,�@B:� A��(P1D�LK!:Z��Ձ1�Tْ�c!Z����I�g��h��f�j���� �q�m�O\� �6�Zu`��m�nl۶y3�yժM�ه%J�ƒǞ8�Mr�ǖLK/���F7���6����o z�@�� ��C?6C]�� �]���9�~�K�y�A�t��s�u�ZK�h��qKmx]�� �a��pĉ^��a��"&���p�0Mh� ��Y@߆�Sm�<a]��cRjFt�1Cc��e[n_B��$�U�iޘ�)F����r��^W�z�!��Z �y�x��9��(I�X�v��]A��:|��q'�r?]t2 �bҀҘ`��4]�� ((��N��2v{��6�`{��'��]@��Ē� �6�l@.0vp>m��T�&°���8��?�6�I(���V�� k��2A�����|�6�rZ�!�=-E=#A/U&�����6b�_�#)����FbR��Y�TF$DI�P���.�W��ȿn߲� � �4еY�{��Þ`a�/�]��j[6��[�}�+��_�տq��o|k�7o����� p�M7���Ƃ7�)�6�(QbV�ϻ��g�;o>']���|�{�3�{V��R6�������)�]V�C��4�@55��n��w��{�Ww ���G���]����Cj�� kuu]�y�p/^#��� s���j�{I�@X"v�j�r��9Œ�R�����������k�>�>�T��"���U���p��$N�@ ^�P+ؒ��~?1 R�_V#"�X&i���4dJ��0�X�!3 SH�j�C��E�ICISĞ �GLɐS[��ըW���E�W+��tA��v�3�,G�"�v0EMT�Q�� �%�!�8�펇Ԋ�z"Y_�W��nNu &�Y���9 �P��(��}U��۳g^�¼����=�Ӳ��~�_'v�-��;c�;g<HJ�j��C�%�T� %�De��"����`*+� �"@7z_A9@V��+���K��45Է�� ��D\-�f5G�h�qjOXp8aO�#�@-F��$"v�"�%b�8�)�9B���S^�7 ��{�feCgg{,gh$a�$LXk7i�;�W�hq� �k- ;�� ��#�[���?8 �ᛘ��5�A��-���v��(�u�0�p���XAq#�Z�buá��K����P����P̬R��8B����!��Z�Q[pqm����n�}��1�6�`樿C��۠�Pi2T ���Z���X��xw8IAٽ��2���N��ň��_l�1��p �b3�W�EU�[�kx3 ��י/�����D��X�v��i�dz�]���V��w�� ��+�q�@��fC�>�k��۳���+���[<Ā�����OcD�E��� &����#."Ժ���]� ��S�M�r�n����#1b�d�s3W~""���9,�B�k'�~��=��3�k�ZgO�A�*��,\&���U�T�1]�g��N��v{wv�����?��G ������:a���Ots&�9@d�)��BbFb�{�#{�Y��� i�#�umm&�� ;��y0��F*%�Z��8Z���1ndQ���&��p����:�V����uQnd��G�ժ�?@[�=�Ȳp�7H�-�2<f�J͠[Ȫr p#k'�!��R�2d[!C�l�l�ޭ$�(59EU�a'2��F ���� p#�`��M>Ƭ��z|� �H�ڝl_� �͕�͏�)<���η����y�W?��ż����(�z����Z�%�ZV��kݺ�V�(���2HT8��rn��� |'�ʡy��Q��-�<�(��4���_��U���|J.�§��ӗp\l��Ɗ��g�:(��;��x�6�$��SQ�xW��*�6��c+�腺�� {zR����\A�Ƹr�����#�� ��7&b�=ۃW��<��<��� ���6�Љ��7%Ē����6+4 �N�CbK�T�#����K�q�膹�������)ǯ�_�������毨{R�K����w�9գ����{=�f�O���kl~����?�mF K��>���˯?~c��T�D����SU��4��'I�)t�:���ȟ��eiw�] ��� (0���W�"�����3��wa ���o*^�;9�� �5]h� ��0���f4u%��?C�뇨|Ȃ�����$=[Qvx�xNh����O�ԗ���C)i�[ٯ�@�P)o�P�5���������U"��.ƥ[/*���@�Ӆ.�=��[���[��7߬�8t�ȑ3�>u���7�)/_���X<~Z� IEND�B`�PK �Z�Z�8j_ _ images/arrows-2x.pngnu ��̗� �PNG IHDR � ��� &PLTE��� ��������� ���rrr ��� ������ sss���jjj ���ooo��� ___ ���|||MMMQQQ yyy ���qqq���XXX������~~~xxx���|||[[[��� ������bbb qqq oooxxx���zzz������������������������������������������������{�[� StRNS \AY V@+FX-/1POZ��Rϧ�#�ܴ��Kţ�L� 쫂�9������ϧ���Q78�%[$��ޣ�g9= �IDATx^���r�@��n)�e������0��If�%�e9N��YdV�{�_��S�w@}CX�O�y��)��ڟ���� 5b��F��Q��BW!�m}n�Ox�ҏ �K ���F̧���Q7�����_R$���}Ă(�� !����no}&'�2\w»��0��Uu� �LYg�~ J� ��w��\�W��p����Ju�P��ֲ�寧���ڞֿ�s�B!��N���(\�ͽ4��$ �ͫ�#3��=?�M�|)�'/x������[��ө�r��b� �X���43g�f�/��!�r�-3�y7�rzoS�ȃA� ^�*���)T7�s��E]���)�����$���36?��vu�������]��]��^]p�Q~H IEND�B`�PK �Z�Zt��F F images/resize-rtl.gifnu ��̗� GIF89a � ������ !� , @��)a������sX\�AHH�S ;PK �Z�Z@�ˑ�"