• tanveersultan

    (@tanveersultan)


    i am using attitue theme in wp 3.5.1
    I want to remove
    By Webmaster | March 10, 2013 | Workings |

    from each and every post
    How to remove it

    I have google and got to know that you have to edit single.php
    therefore, i have pasted the code below . I dont have an experience of working with codes

    <?php
    /**
     * Displays the single section of the theme.
     *
     * @package Theme Horse
     * @subpackage Attitude
     * @since Attitude 1.0
     */
    ?>
    
    <?php get_header(); ?>
    
    <?php
    	/**
    	 * attitude_before_main_container hook
    	 */
    	do_action( 'attitude_before_main_container' );
    ?>
    
    <div id="container">
    	<?php
    		/**
    		 * attitude_main_container hook
    		 *
    		 * HOOKED_FUNCTION_NAME PRIORITY
    		 *
    		 * attitude_content 10
    		 */
    		do_action( 'attitude_main_container' );
    	?>
    </div><!-- #container -->
    
    <?php
    	/**
    	 * attitude_after_main_container hook
    	 */
    	do_action( 'attitude_after_main_container' );
    ?>
    
    <?php get_footer(); ?>


    [Please use the code buttons when posting code here]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter tanveersultan

    (@tanveersultan)

    english is not my native languge , sorry for ANY MISTYPO !

    WPyogi

    (@wpyogi)

    It’s actually easier to hide that line of text using CSS. But either way, don’t make changes to theme files — instead use a child theme or custom CSS option or plugin.

    http://codex.wordpress.org/Child_Themes

    If you post a link to your site, someone can help you with the change – after you’ve set up a child theme or custom CSS.

    Thread Starter tanveersultan

    (@tanveersultan)

    Plugin name Please !

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘remove posted by admin , date , time’ is closed to new replies.