• I bought a very complicated theme haha and I’m trying to remove breadcrumbs from all pages but I’m not sure what my “$args” should be

    /**
     * Breadcrumb trail arguments.
     *
     * @since 0.1
     */
    function proxima_breadcrumb_trail_args( $args ) {
    
    	$args['before'] = '';
    	$args['separator'] = '  /  ';
    	$args['front_page'] = false;
    
    	return $args;
    }

    I’m thinking I can just do this but it’s not working?? Any suggestions??

    /**
     * Breadcrumb trail arguments.
     *
     * @since 0.1
     */
    function proxima_breadcrumb_trail_args( $args ) {
    
    	$args['before'] = '';
    	$args['separator'] = '  /  ';
    	$args['front_page'] = false;
    	$args[$is_page] = false;
    
    	return $args;
    }
Viewing 4 replies - 1 through 4 (of 4 total)
  • Why not leave the links there (for SEO) and just hide them from displaying with CSS? Crawlers see source code not the actual display of the site, just us humans do 🙂

    Thread Starter jbt103

    (@jbt103)

    That would be fine too, I have absolutely NO idea how to do that though haha. I’m kind of teaching myself code as I go.

    Here is the css for my breadcrumbs:

    /* Breadcrumbs
    -------------------------------------------------------------- */
    .breadcrumbs {
    	font-size: 11px;
    	color: #aaa;
    	float: left;
    	width: 96.3%;
    	padding: 2px 2px 3px 2px;
    	margin-bottom: 0px;
    }
    .breadcrumbs a { color: #777; }
    .breadcrumbs a:hover { color: #000; }

    Could you provide a site link? While that CSS may seem to be the obvious one to deal with, it may well not be…

    If not, review and use this:

    .breadcrumbs {display:none;}

    For help with CSS, a live site link is required…if we cannot see the site, we cannot see the stylesheet(s), so we cannot suggest changes.

    To discover what CSS is output by your theme, use a web inspection tool such as Firebug: http://getfirebug.com/ , Chrome Inspect Element: https://developers.google.com/chrome-developer-tools/ or Internet Explorer 9+ F12 Dev. Tools: http://msdn.microsoft.com/en-us/library/dd565627(v=vs.85).aspx#csstool

    There are others.

    When editing CSS, use a Child Theme
    http://codex.wordpress.org/Child_Themes
    Custom CSS Plugin, or Theme provided custom CSS option.
    Edits to parent themes are lost on theme update.

    Learn CSS: http://www.w3schools.com/css/

    Thread Starter jbt103

    (@jbt103)

    Sure its JoshuaTrent.com. I just started customizing this theme so it’s still under construction. style.min.css is the file for this theme for some reason, instead of style.css. (Although I’ve been making the changes to both)

    I do want the breadcrumbs to display on my posts still though, will that affect the posts as well?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Removing breadcrumbs with $args’ is closed to new replies.