Title: YuMyo's Replies | WordPress.org

---

# YuMyo

  [  ](https://wordpress.org/support/users/nikho/)

 *   [Profile](https://wordpress.org/support/users/nikho/)
 *   [Topics Started](https://wordpress.org/support/users/nikho/topics/)
 *   [Replies Created](https://wordpress.org/support/users/nikho/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/nikho/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/nikho/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/nikho/engagements/)
 *   [Favorites](https://wordpress.org/support/users/nikho/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 43 total)

1 [2](https://wordpress.org/support/users/nikho/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/nikho/replies/page/3/?output_format=md) 
[→](https://wordpress.org/support/users/nikho/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Block Pattern Builder] Missing patterns](https://wordpress.org/support/topic/missing-patterns/)
 *  [YuMyo](https://wordpress.org/support/users/nikho/)
 * (@nikho)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/missing-patterns/#post-13161106)
 * +1 && +1 Thank You!
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [if ( “Gutenberg” ): ?](https://wordpress.org/support/topic/if-gutenberg/)
 *  [YuMyo](https://wordpress.org/support/users/nikho/)
 * (@nikho)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/if-gutenberg/#post-12903830)
 *     ```
       function is_gutenberg() {
   
           global $post;
   
           if ( function_exists( 'has_blocks' ) && has_blocks( $post->ID ) {
               return true;    
           } else {
               return false;
           }
       }
       ```
   
 * Adapted from the code in this [article](https://artiss.blog/2018/09/detecting-per-post-use-of-gutenberg/)
   in light of the **gutenberg_post_has_blocks** deprecation in favour of **has_blocks**.
 * has_blocks() | Function: [https://developer.wordpress.org/reference/functions/has_blocks/](https://developer.wordpress.org/reference/functions/has_blocks/)
 * Deprecations:
    [https://github.com/WordPress/gutenberg/blob/8362898596edb49f463eab6b8ac6a44ec71032e9/docs/designers-developers/developers/backward-compatibility/deprecations.md](https://github.com/WordPress/gutenberg/blob/8362898596edb49f463eab6b8ac6a44ec71032e9/docs/designers-developers/developers/backward-compatibility/deprecations.md)
    -  This reply was modified 6 years, 1 month ago by [YuMyo](https://wordpress.org/support/users/nikho/).
    -  This reply was modified 6 years, 1 month ago by [YuMyo](https://wordpress.org/support/users/nikho/).
    -  This reply was modified 6 years, 1 month ago by [YuMyo](https://wordpress.org/support/users/nikho/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Schema] Notice on empty archive pages](https://wordpress.org/support/topic/notice-on-empty-archive-pages/)
 *  [YuMyo](https://wordpress.org/support/users/nikho/)
 * (@nikho)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/notice-on-empty-archive-pages/#post-9360102)
 * Notice still there, my sub-category archive is not empty though, just filtered
   with pre_get_posts to alter posts_per_page and post_type.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Schema] Notice on empty archive pages](https://wordpress.org/support/topic/notice-on-empty-archive-pages/)
 *  [YuMyo](https://wordpress.org/support/users/nikho/)
 * (@nikho)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/notice-on-empty-archive-pages/#post-9187497)
 * Same here
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [wp-video-shortcode – play via js](https://wordpress.org/support/topic/wp-video-shortcode-play-via-js/)
 *  [YuMyo](https://wordpress.org/support/users/nikho/)
 * (@nikho)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/wp-video-shortcode-play-via-js/#post-9006273)
 * You can do it this way:
    `$( 'video' )[0].player.play();`
 * This targets your first video. If you have multiple videos you can use a unique
   selector like ID.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[empty framework] Theme Inclusion Price?](https://wordpress.org/support/topic/theme-inclusion-price/)
 *  [YuMyo](https://wordpress.org/support/users/nikho/)
 * (@nikho)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/theme-inclusion-price/#post-8912920)
 * [http://www.empty-framework.com/premium-2/](http://www.empty-framework.com/premium-2/)
   is broken
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Schema] Any Filter/hook ?](https://wordpress.org/support/topic/any-filterhook/)
 *  Thread Starter [YuMyo](https://wordpress.org/support/users/nikho/)
 * (@nikho)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/any-filterhook/#post-8677999)
 * Correction: the filter seems to run in individual posts and categories but not
   archives or custom post type archives
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Schema] Any Filter/hook ?](https://wordpress.org/support/topic/any-filterhook/)
 *  Thread Starter [YuMyo](https://wordpress.org/support/users/nikho/)
 * (@nikho)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/any-filterhook/#post-8674261)
 * Done!
 * However, the above filter seems to run in individual posts but not for categories.
   Is that right?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Include Archive Links in Search Results](https://wordpress.org/support/topic/include-archive-links-in-search-results/)
 *  [YuMyo](https://wordpress.org/support/users/nikho/)
 * (@nikho)
 * [9 years, 6 months ago](https://wordpress.org/support/topic/include-archive-links-in-search-results/#post-8638505)
 * Not by core but supported by this excellent paid plugin [https://searchwp.com/](https://searchwp.com/)
    -  This reply was modified 9 years, 6 months ago by [YuMyo](https://wordpress.org/support/users/nikho/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[wp-Typography] Seo Yoast compatibility](https://wordpress.org/support/topic/seo-yoast-compatibility/)
 *  Thread Starter [YuMyo](https://wordpress.org/support/users/nikho/)
 * (@nikho)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/seo-yoast-compatibility/#post-8452765)
 * [@pputzer](https://wordpress.org/support/users/pputzer/) thanks for pointing 
   out the `remove_filter` option. By now, I am including `title` in the list of
   the **Do not process HTML elements** and this solves the issue with no side effects
   as I am using WP Typography on a case by case basis with `$typo->process( $title);`
   but I’ll give your snippet a spin as soon as I have more time to play with it.
    -  This reply was modified 9 years, 8 months ago by [YuMyo](https://wordpress.org/support/users/nikho/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Justified Gallery] Last row height](https://wordpress.org/support/topic/last-row-height/)
 *  Thread Starter [YuMyo](https://wordpress.org/support/users/nikho/)
 * (@nikho)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/last-row-height/#post-8438657)
 * btw, triggering the resize event from the Chrome Console does nothing. Just a
   real resize, even of one pixel, does.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Justified Gallery] Last row height](https://wordpress.org/support/topic/last-row-height/)
 *  Thread Starter [YuMyo](https://wordpress.org/support/users/nikho/)
 * (@nikho)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/last-row-height/#post-8438447)
 * Hi Damian,
 * thanks for the reply.
 * I’ve tried to use the `jg.complete` event to fire the resize but with no luck
   so far. Any chance you could provide a sample snippet?
    -  This reply was modified 9 years, 8 months ago by [YuMyo](https://wordpress.org/support/users/nikho/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[wp-Typography] Seo Yoast compatibility](https://wordpress.org/support/topic/seo-yoast-compatibility/)
 *  Thread Starter [YuMyo](https://wordpress.org/support/users/nikho/)
 * (@nikho)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/seo-yoast-compatibility/#post-8396100)
 * Yes, I think it might be related to the above filters as I got no other theme
   specific mods. Anyway, it doesn’t affect search and shouldn’t affect ranking 
   as Google knows what a `&nbsp;` is.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[wp-Typography] Seo Yoast compatibility](https://wordpress.org/support/topic/seo-yoast-compatibility/)
 *  Thread Starter [YuMyo](https://wordpress.org/support/users/nikho/)
 * (@nikho)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/seo-yoast-compatibility/#post-8395840)
 * Yes on the frontend side, page title and meta description in the document head.
   
   Yoast also applies the same values to the OG and Twitter card meta. However, 
   I am using the `wpseo_title` and `wpseo_metadesc` filters to pass ACF values 
   to those fields.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress Website Tools Plugin – AddThis] Prevent CSS Injection in Head](https://wordpress.org/support/topic/prevent-css-injection-in-head/)
 *  Thread Starter [YuMyo](https://wordpress.org/support/users/nikho/)
 * (@nikho)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/prevent-css-injection-in-head/#post-8354512)
 * Thanks for clarifying Matt.

Viewing 15 replies - 1 through 15 (of 43 total)

1 [2](https://wordpress.org/support/users/nikho/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/nikho/replies/page/3/?output_format=md) 
[→](https://wordpress.org/support/users/nikho/replies/page/2/?output_format=md)