If you want to just hide the link in the admin area, you can add this CSS code to your admin area. Assuming that the extra link is the LAST one in the row, add this code to you theme’s functions.php
file:
add_action('admin_head', 'my_custom_fonts');
function my_custom_fonts() {
echo '<style>.row-actions span:last-child {display:none} </style>';
This will hide the link added by the plug-in. If the extra link is not the last one in the row, then you have to replace :last-child
with :nth-child(n)
, which (n)
is the number of the element in the row, starting from 1.
Related Posts:
- Two title tags in my header
- How can I add title attributes to next and previous post link functions?
- order by second word in title?
- How to add subscript and superscript in WordPress page titles
- the_title filter applying to menu items
- Fill post titles from post content?
- Empty title on front page/Home
- Changing “Enter title here” based on post format
- How to get page’s ID if I know the title only?
- WordPress i18n-friendly preg_replace post title
- How to make a H1 different then the Title?
- How to set custom title of custom page template?
- How do I edit the tag without using the deprecated `wp_title()` function?
- Change Default Custom Fields Metabox Name
- Display post title on individual image attachment page
- Include category title in wp_title
- Get wp_title() from page ID into a variable
- Custom Post Type Title Placeholder [duplicate]
- Site title not showing. What can I do?
- SEO meta description and title tag Yoast SEO
- What code do you use to generate the text to go into the HTML title tag?
- Multiple Conditions for Child Page Title
- How come my first blog post and my home page have the same title?
- Where do I change the ACTUAL title tag that is set in the header.php
- Why doesn’t YoastSEO allow me to set the title/description for the home page? [closed]
- Remove site name from title post
- Hide price & title in store thumbnail dispay? [closed]
- How do I set the blog name?
- Add anchor text to php
- How to echo a different title to the page if it’s opened on an android mobile phone
- Remove post title
- Set max title length – similar to excerpt length for outside of single.php
- How to edit title on Edit post pages?
- Automatically add words if duplicate post titles
- Remove Title of youtube video
- How to insert icon in site title
- How to add H4 tag to the_content filter (after content)?
- How can I automatically insert the page content as the title?
- HeadSpace2 double title on homepage
- Changing title & add Breadcrumbs
- Page title is showing category name as well in the google search results
- How to Change The Title in WordPress For SEO
- change title separator
- Modify conditional titles to include parent and page number
- Blog Title not showing up on main Blog page
- Why is a category/ tag name prefixed to title of every page?
- Where does Yoast SEO plugin sets the site/page title?
- Cannot use ‘CSS’ in post title
- Replace text in the Title
- Wrap the_title_attribute in a H2 within a Conditional Tag?
- How to echo all the_title() without text after last “-“
- set title attribute in wp_get_attachment_image()
- How can I override the post title when a post is set to sticky? [closed]
- How to get current page title inside a page’s template
- Permalink and ACF field
- Remove tagline from the HTML on the home page without plugin?
- Homepage meta title and description not showing in search engines?
- Double bar “|” in title (By WP SEO Yoast?) [closed]
- Prefix the title tag, if IP address is the dev server
- How to put post title or keyphrase in content on different places automatically?
- Change meta data of pdf file
- How come I get internal server error even with try catch for get_the_title in functions.php?
- How can I add a title to this ‘maintenance mode’ function?
- Wp Admin Bar Customizing Labels
- How to get Title of Home Page to Appear on Page
- Need help with page title (Static front page)
- Show post title words one by one [closed]
- Text under post title on frontpage but don’t want it in full post
- Inconsistent title for posts
- How to add a span class in the post title?
- Adding a class to post title considering the title length
- SEO module to change tag title for different listing page
- strtolower
- Hide a page title in WordPress 3.0
- Getting the Image Title (not the post title)
- Change post title but not in widgets/menu/etc
- I want to add number after post tittle for each category
- Special characters in post_title replaced by ‘?’
- Limit title length
- Remove title bar from post-new.php
- How do you change the title of the Edit Post page?
- How to get page title () in a different order?
- Page Title Dependant On Input?
- Reorder title tag and description tag with wpseo_title and wpseo_metadesc
- How can I remove an unwanted character from the main page’s title?
- How do you keep the title of a post. to NOT show when publishing the post?
- Custom title when using shortcode
- Change font and Colours in Menus
- How do I separate the post title from the content in an excerpt coded thus:
- Comparing pre-saved post_title to post-saved post_title
- Different titles for static, posts, and every xy page
- The entity “raquo” was referenced, but not declared
- How to get the meta title of a page configured as blog (loop)
- Add Placeholder in WordPress Editor Content Box
- How to delete posts which have same title?
- My post titles is getting mashed up with my blog title
- What is the wordpress page title php code?
- How can I change tagline in title tag “Just another wordpress site”?
- I have a problem with Home Page title
- how to put breadcrumb under Title [closed]