You can do this using jQuery.
First of all, you need to add your script into your functions.php
function my_theme_scripts() {
wp_enqueue_script( 'expand-tags', get_site_url() . '/js/expand-tags.js', array( 'jquery' ), '1.0.0', true );
}
add_action( 'admin_enqueue_scripts', 'my_theme_scripts' );
Then, in your file (expand-tags.js
) which is located on, for example, public_html/mysite/js/
, you will have to have something like this:
$(document).ready(function() {
$("#link-post_tag").trigger("click");
});
link-post_tag is the ID of the Choose from the most used tags button, so when the page is loaded, a button click will be triggered.
Related Posts:
- Human Time Diff, change mins to minutes
- Adding Multiple Values to a Post Meta Key
- Converting a dynamic piece of code using WordPress Loop into a static one using Post ID
- Setting posts_per_page for taxonomy term template
- Change all author links in Blog roll
- saving/reading custom field value does not work – no value gets POSTed
- Check if user has avatar
- Run function after post is updated
- How do I display some posts fully on the homepage, and some as an excerpt only?
- Get Posts Under Custom Taxonomy
- Prepending %category% onto default posts fails
- get_adjacent_post by language
- How to compare two posts including their meta fields on a scalable base?
- Duplicate Custom Post Type and Taxonomy Slug
- Remove Custom Post Type Slug and add Custom Taxonomy to Permalink Structure?
- Getting value from get_post_custom
- Send post id through ajax and get the post content back
- Calling Different Custom Post Timestamps in a table
- How can I setup a relationship using categories in WordPress?
- Is it possible to paste a link without tags and make it directly a link in a post?
- Display post x of y within category
- Force authors to Preview a post before publishing
- How to display posts via custom taxonomy terms using checkboxes?
- WordPress Automatic Filename Changer
- How can I hide tags on a child-category page, if that tag has not been used?
- Cannot retrieve a custom RSS field from posts
- 404 error on default post type and default taxonomy fronted page
- Saving custom fields to a custom taxonomy
- Redirect to another page using contact form 7? [closed]
- Order posts alphabetically: how to set order=asc in mysql query?
- How to automate featured posts number? [duplicate]
- How do I insert a post with custom post type and relate it to a custom taxonomy?
- outputting posts’ taxonomies: cant get ‘get_the_taxonomies’ working
- Customize rel=canonical tag for single blog post
- How to I retrieve the ID from the Posts page?
- How to save meta checkbox WordPress
- disable Tab post on nav-menus page (Admin)
- Loop parent terms {display posts} AND loop child terms {display posts}
- Adding bootstrap classes to video shortcodes
- How to calculate the average of a post meta value(Numeric) of a specific author
- Every second post different class in blog view
- Format latest/newest post differently
- is_page Funtion for Posts ?
- Is there any way to tell when wp_postmeta has been updated?
- Post type no single page
- relating business and products with custom taxonomy?
- Is there a query string for edit.php to show all posts that have no custom taxonomy terms?
- Get post meta retrieving wrong value
- Adding a user’s ID behind the tag ref link address
- wpColorPicker – problem with implementation to post meta
- The_excerpt() doesn’t parse – how to change that?
- How to only publish posts with image in it
- Isn’t the way posts are displayed very unefficient?
- WordPress bulk category select when publishing post
- Add custom text automatically on each post
- How to check in functions.php if there is data in a WP_Query?
- Change post author without using wp_update_post()
- if in category but only with post meta
- restrict incrementation of post vies count when refreshing the page
- Defined function isn’t showed on page
- wp_query with ajax
- Update post meta within save_post action
- WordPress 302 Redirect to Random Product/Post/Page
- Display post number by category
- Updating post meta for checkbox
- Saving Post Data in Another Database
- Getting Whitescreen when publishing a post [closed]
- Using system date format
- Get post by tag
- Add code to a specific post’s content
- Related Posts function not working
- Custom permalink for each post
- the_content() Not Grabbing All Content
- How can I tell if a post has been published at least once?
- Un-highlight Blog Menu Item when Category Menu Item is Selected
- Is there a way getting post fields using `transition_post_status`
- Automatic blog page with custom design [closed]
- Is it advisable to use $post->comment_count instead of get_comments_number( $post_id )
- Add multiple meta keys to a post at once
- Show number of posts by logged in user
- How does WP decide how to display a page
- Related Posts: Changing Function For Posts Per Page
- Unable to differentiate between two categories under custom post type on single.php
- When sending a newsletter -not with wordpress- the server has 100% cpu [closed]
- Retrieve data from post meta meta_key having ‘_product_fq_image’ while having author_id and post type is PRODUCT
- Query function not executed between element [closed]
- Insert data from custom created PHP page into wp_postmeta table
- Optimize CPT-function with a loop
- Adding a meta box to determine the sidebar [closed]
- The loop starting at a certain ID
- Simple Custom Metabox Not Saving
- Same post appears in related Posts?
- Internal linking to posts permalink fail because of spaces and stripe at postname
- Get post category as a separate string and url
- Have h2 tag not show up if there are no blog posts
- WordPress as CMS: How to manage/handle images assigned to a post as full-sized background images in a slideshow?
- Making a wordpress page print friendly
- How To Use Custom Tax of a Post Type
- How to output all taxonomy links from a custom post type in a menu?
- Geting error in post and category [closed]