Title: variable on title/description
Last modified: June 26, 2020

---

# variable on title/description

 *  Resolved [fonnte](https://wordpress.org/support/users/fonnte/)
 * (@fonnte)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/variable-on-title-description/)
 * Hello,
 * is it possible to make default title and description using variable?
 * for example:
 * 1. post : how to [title] in [category]
    2. custom post type : Discount price 
   of [title] on [custom_tax=”promo”]
 * i am willing to migrate from yoast, yet my structure on yoast is as mentioned
   above
    -  This topic was modified 5 years, 11 months ago by [fonnte](https://wordpress.org/support/users/fonnte/).

Viewing 1 replies (of 1 total)

 *  Plugin Author [Anh Tran](https://wordpress.org/support/users/rilwis/)
 * (@rilwis)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/variable-on-title-description/#post-13051496)
 * Hi [@fonnte](https://wordpress.org/support/users/fonnte/) ,
 * The plugin support shortcodes for meta tags, so you can use it to enter manually
   in the Search Engine Optimization box.
 * If you want to do for all posts, you can use the filter as described [in the docs](https://wpslimseo.com/docs/meta-title-tag/):
 *     ```
       add_filter( 'slim_seo_meta_title', function( $title ) {
           if ( is_singular( 'post' ) ) {
               $categories = get_the_category();
               $title = 'how to ' . get_the_title() . ' in ' . $categories[0]->name;
           } elseif ( is_singular() ) {
               $title = 'Discount price of ' . get_the_title() . ' on [custom_tax="promo"]';
           }
           return $title;
       } );
       ```
   
 * (assuming your [custom_tax=”promo”] shortcode already works)

Viewing 1 replies (of 1 total)

The topic ‘variable on title/description’ is closed to new replies.

 * ![](https://ps.w.org/slim-seo/assets/icon.svg?rev=2005049)
 * [Slim SEO - A Fast & Automated SEO Plugin For WordPress](https://wordpress.org/plugins/slim-seo/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/slim-seo/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/slim-seo/)
 * [Active Topics](https://wordpress.org/support/plugin/slim-seo/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/slim-seo/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/slim-seo/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Anh Tran](https://wordpress.org/support/users/rilwis/)
 * Last activity: [5 years, 11 months ago](https://wordpress.org/support/topic/variable-on-title-description/#post-13051496)
 * Status: resolved