• I can not find code for the RRS url anywhere in the editor. I want to change it from the page rss feed to my twitter rss feed. Where would i insert this url? I’ve look everywhere. Thank You.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Go into the Editor and open up header.php and look for the following line of code

    <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />

    and replace

    <?php bloginfo('rss2_url'); ?>

    with your Twitter RSS feed.

    Update the file and then also open up sidebar.php and look for the following line of code

    <a class="rssBtn" href="<?php bloginfo('rss2_url'); ?>">

    and replace

    <?php bloginfo('rss2_url'); ?>

    with your Twitter RSS feed. Update the file and you should be all set.

    Thread Starter jwillua

    (@jwillua)

    Thanks for the response, i found something similar and tried to replace the rss url and a few others and still no luck. I attached the header code i think contains the link. What should i replace? Thank you for the response and help.

    <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>"  />
    <title><?php
    if (is_home ()) { bloginfo('name'); echo " - "; bloginfo('description'); }
    elseif (is_category() || is_tag()) {single_cat_title(); arjuna_get_appendToPageTitle(); }
    elseif (is_single() || is_page()) {single_post_title(); arjuna_get_appendToPageTitle(); }
    elseif (is_search()) {_e('Search Results:', 'Arjuna'); echo " ".wp_specialchars($s); arjuna_get_appendToPageTitle(); }
    else { echo trim(wp_title(' ',false)); arjuna_get_appendToPageTitle(); }
    ?></title>
    <?php if(is_home()): ?><link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed"<?php bloginfo('rss2_url'); ?>" /<?php endif; ?>
    <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
    <?php
    if (!$arjunaOptions['enableIE6optimization'] || !arjuna_isIE6()) { ?>
    	<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
    	<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' );?>
    	<?php wp_head(); ?>
    	<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/default.js"></script>
    	<!--[if lte IE 7]><link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/ie7.css" type="text/css" media="screen" /><![endif]-->
    	<!--[if lte IE 6]>
    	<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/ie6.css" type="text/css" media="screen" />
    	<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/ie6.js"></script>

    Go into the Editor and open up header.php and look for the following line of code

    <link rel=”alternate” type=”application/rss+xml” title=”<?php bloginfo(‘name’); ?> RSS Feed” href=”<?php bloginfo(‘rss2_url’); ?>” />

    and replace

    <?php bloginfo(‘rss2_url’); ?>
    source: https://wwww.fasterpony.com

    [Code moderated as per the Forum Rules. Please use the pastebin]

    Look for href=”Your Twitter RSS Feed URL Here” in the above code that I listed and inside of the “” put the URL of your Twitter RSS feed.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Arjuna X Theme RSS’ is closed to new replies.