animish
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
I am closing the topic now.
OK. I found the solution. I put the following code in theme’s functions.php file.
function my_wpseo_breadcrumb_links( $links ) { global $post; if ( is_singular && get_post_type() == 'wp_tut' ) { $breadcrumb[] = array( 'url' => 'http://mysite.com/movies/', 'text' => 'Movies', ); array_splice( $links, 1, -2, $breadcrumb ); } return $links; } add_filter( 'wpseo_breadcrumb_links', 'my_wpseo_breadcrumb_links' );Or else, suggest me if I can edit any plugin file, and what to edit in that file.
Thanks in advance.
Hello Jeremy!
Thanks for the reply.
Everything is working fine now! Thanks.
Viewing 4 replies - 1 through 4 (of 4 total)