Shortlink wordpress sharing tool

Hi,

I would like to change the sharing URL to the shortlink wp.me. While i am trying to share it gives me a long URL because it includes arabic letters,
I checked Jetpack they said add this:
add_action('init', 'my_custom_init'); function my_custom_init() { add_post_type_support( 'product', 'shortlinks' ); }

But replace the product by your by your Custom Post Type name.
It didn’t work.

Any idea?

thx

Hello There,

I am not sure which post type you would want to shorten the URL. If you need the post, you might need to use this:

add_action('init', 'my_custom_init');
function my_custom_init() {
  add_post_type_support( 'post', 'shortlinks' );
}

Please understand that this is beyond the scope of our support as it is no longer related to the X/Pro theme or Cornerstone plugin. This is something from Jetpack. For more assistance, you might need to contact the creators of the plugin or source of the script you have shared above.

Thank you for your understanding.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.