How to Remove Header Image from Interior Pages

Header Image Mods

There have been a num­ber of ques­tions about mod­i­fy­ing the default Word­Press “Twen­tyEleven” theme’s header image setup. The fol­low­ing sec­tions will cover:

  1. how to remove the header images using the functions.php file;
  2. how to add your own images to the functions.php file; and
  3. how to set the header image to appear on the front/​home page but not on sub – pages using the header.php file.

This post is not meant to be com­pre­hen­sive, but rather is intended as guide to — hope­fully — help you fig­ure out how to mod­ify the header sys­tem in your Twen­tyEleven child – theme on your own. As always, if you need help you can tweet, post a com­ment, or email me your ques­tions and/​or com­ments. Down the rab­bit hole we go …


Header img: How to Get Started Mod ’ing

I would imag­ine the first ques­tion is: “How Do I Even Begin?” The answer is rel­a­tively sim­ple: “Fig­ure Out How a Theme is Set – Up.” There are, I think, sev­eral good ways to do this:

  1. Search for a Model of a Word­Press Theme;
  2. Search the Word­Press Codex;
  3. Search Google for exam­ples; and
  4. Review how a Child – Theme is setup:
    1. Theme Review: Dig­ging into Twenty Eleven;”
    2. How to: Cre­ate a Child Theme Based on Twenty Eleven;” and
    3. Cre­at­ing a Sim­ple Child Theme Using Twenty Eleven.”

Header img: How To Remove the Images & Add Your Own Images

Exam­in­ing the “Anatomy of a Word­Press Theme” arti­cle reveals that the header images are being run via the header.php and functions.php files. Using that infor­ma­tion and doing a quick Google search brought up a sev­eral good tuto­ri­als that cover how to remove, add, adjust, and oth­er­wise mod the header image sys­tem for your 2011 child – theme.

  1. WPTI​.PS: “Replace/​Remove Default Header Image Twenty Eleven Theme.”
  2. VooDoo Press: “Adding and Remov­ing Default Head­ers in Twen­tyEleven.”

Based on the infor­ma­tion from these tuto­ri­als and the “Anatomy” arti­cle, the first step in mod­i­fy­ing the header image setup in our Twenty Eleven theme is to make sure that we cre­ated a functions.php file for our child theme, and that we have copied the header.php file from the par­ent theme and added it to our child theme direc­tory — see “How to: Cre­ate a Child Theme Based on Twenty Eleven” and “Cre­at­ing a Sim­ple Child Theme Using Twenty Eleven” if you need help cre­at­ing the functions.php file and/​or copy­ing over files from the par­ent theme.

Exam­in­ing the 2011 the functions.php and header.php files reveals that the header images are being ini­tial­ized, arrayed, and called from line 78 in the header.php file:


<?php
// Check to see if the header image has been removed
	$header_image = get_header_image();
	if ( ! empty( $header_image ) ) :
?>

and from line 143+ in the functions.php file:


// Default custom headers packaged with the theme. %s is a placeholder for the theme template directory URI.
register_default_headers( array(
	'wheel' => array(
	'url' => '%s/images/headers/wheel.jpg',
	'thumbnail_url' => '%s/images/headers/wheel-thumbnail.jpg',
	/* translators: header image description */
	'description' => __( 'Wheel', 'twentyeleven' )
	),

	.
	.
	.

	'hanoi' => array(
	'url' => '%s/images/headers/hanoi.jpg',
	'thumbnail_url' => '%s/images/headers/hanoi-thumbnail.jpg',
	/* translators: header image description */
	'description' => __( 'Hanoi Plant', 'twentyeleven' )
	)
	) );
}

Fol­low­ing the WP Tips and Voodoo Press arti­cles, the basic code setup for remov­ing, adding, and mod­i­fy­ing the header image sys­tem is listed below.

To Remove the Header Image
Use a code com­ment to turn off the header image:


<!--Turn Off WordPress Header Image
<?php // Check to see if the header image has been removed
$header_image = get_header_image();
if ( ! empty( $header_image )) :
?>
-->

There is, how­ever, a bet­ter way to turn off the header images. Open the functions.php file from your child – theme and add the fol­low­ing code:

//	Remove 2011 Default Images
function theme_header_remove() {
unregister_default_headers();
}
add_action( 'after_setup_theme', 'theme_header_remove', 11 );

To Add Your Own Images
To add your own images the default header images need to be removed and then your images ini­tial­ized and loaded by adding the fol­low­ing to the child – theme functions.php file:

//	Remove 2011 Default Images
function theme_header_remove() {
unregister_default_headers( array('wheel','shore','trolley','pine-cone','chessboard','lanterns','willow','hanoi') );
}
add_action( 'after_setup_theme', 'theme_header_remove', 11 );


//	Add 2011 Custom Images
function theme_header_add() {
$theme_dir = get_bloginfo('stylesheet_directory');
register_default_headers( array (
'image-1' => array (
'url' => "$theme_dir/images/image-1.jpg",
'thumbnail_url' => "$theme_dir/images/image-1-thumb.jpg",
'description' => __( 'Description Text', 'twentyeleven-child' )
),
'image-2' => array (
'url' => "$theme_dir/images/image-2.jpg",
'thumbnail_url' => "$theme_dir/images/image-2-thumb.jpg",
'description' => __( 'Description Text', 'twentyeleven-child' )
)
));
}
add_action( 'after_setup_theme', 'theme_header_add' );

Make sure to care­fully fol­low­ing the Tips and Voodoo tuto­ri­als. Also, be sure to replace image-1, etc. with the actual names of the image files you are going to use. Caveat: adding your own images this way will neces­si­tate that you cre­ate the thumb­nail images (which are optional).
How to Remove the Images from Sub – Pages
The next step was to deter­mine what Word­Press had setup in the header.php file that I would allow me make the header images show only on the front/​home page but not the sub – pages. The code from the 2011 header.php file:

<?php
// Check to see if the header image has been removed:original
$header_image = get_header_image();
if ( ! empty( $header_image ) ) :
?>

This code indi­cates that by mod­i­fy­ing the con­di­tionalif—state­ment the header images can be shown only on cer­tains pages. I googled the code and got lucky; the fifth entry on the Google results page pro­vided me with an answer on Stack Exchange’s Word­Press Answers: “How to remove header image on sub­pages in Twenty Eleven (default theme)?
The code from StackExchange:

<?php
// Check to see if the header image has been removed:modified
$header_image = get_header_image();
if ( ! empty( $header_image ) && is_front_page() ) :
?>

The answer:
  1. Replace the orig­i­nal header.php code, start­ing on line 78:
    
    <?php
    // Check to see if the header image has been removed:original
    $header_image = get_header_image();
    if ( ! empty( $header_image ) ) :
    ?>
    
    
  2. with the Stack code:
    
    <?php
    // Check to see if the header image has been removed:modified
    $header_image = get_header_image();
    if ( ! empty( $header_image ) && is_front_page() ) :
    ?>
    
    
  3. Once you have mod­i­fied the header.php file; double – check:
    1. You added the code cor­rectly (proof read);
    2. Ver­ify that your header.php file is saved;
    3. Test your site in a browser;
    4. If the images are not show­ing up on your inte­rior or sub­pages, you are done.
  4. Oth­er­wise, start debug­ging. I would start by check­ing that you:
    • saved the header.php file,
    • that you saved it to the right location,
    • and that you refreshed your browser.
  5. If the images are still show­ing up, send me a mes­sage or com­ment on the post.

I hope this short write – up will help you mod­ify the header image sys­tem and learn some­thing more about work­ing with code Word­Press. Again, tweet, post a com­ment, or email me your ques­tions and/​or comments.

Mapping for DH

Intro­duc­tion

These are good intro­duc­tions to doing his­tor­i­cal gis work, and while they are writ­ten mostly for a Cana­dian envi­ron­men­tal his­tory audi­ence there is a good deal of infor­ma­tion that can be extracted and used in your own projects from links to ideas.

Soft­ware

Base

Other

  • Map Builder
  • Com­mu­nity Walk
  • Exam­ples

    Week 09: Web Development Continued and WordPress

    HTML Review

    Dur­ing our last ses­sion, we cov­ered basic HTML by build­ing a very sim­ple web­site. Dur­ing our ses­sion today, we will con­tinue that work using CSS. For those of you who missed our March 7 ses­sion, you may down­load the HTML.

    HTML/​CSS Resources

    For those of you who are unfa­mil­iar with HTML and CSS, I highly rec­om­mend work­ing through, or at least scan­ning, the Opera Web Devel­op­ment Cur­ricu­lum. The exer­cises are, for the most part, well writ­ten and easy to fol­low and use. I have added spe­cific Opera:Dev arti­cles that you should pay par­tic­u­lar atten­tion to in a sep­a­rate post: Opera Dev: HTML and CSS.

    For those of you look­ing for a quick list of basic HTML ele­ments, I rec­om­mend Dave Shea’s Mez­zoBlue HTML Markup Guide.

    Work­ing with WordPress

    Word­Press is, at some level, the DH stan­dard for build­ing web­sites either for per­sonal use or for other web based projects. It is such because of its, gen­er­ally, user-​friendly setup and because of its large and robust user base that offers access to numer­ous tuto­ri­als, exer­cises, and arti­cles about using and work­ing with Word­Press in addi­tion to the numer­ous plu­g­ins inde­pen­dently devel­oped to increase WordPress’s func­tion­al­ity. Most web projects can be eas­ily built using Word­Press and plu­g­ins with­out ever touch­ing a line of code, but some­times we need/​want to directly work directly with the Word­Press code to add some fur­ther func­tion­al­ity or to sim­ply learn about cod­ing. We will begin our explo­ration of hack­ing Word­Press by exam­in­ing: Anatomy of a Word­Press Theme as well as explor­ing the doc­u­men­ta­tion avail­able in the Word­Press Codex to help users work with, mod­ify, and develop web­sites built using Word­Press. See Word­Press Theme Basics for links related to .

    WordPress Theme Basics

    Word­Press is, at some level, the DH stan­dard tool for build­ing web­sites either for per­sonal use or for other web based projects. It is such because of its, gen­er­ally, user-​friendly setup and because of its large and robust user base. Most web projects can be eas­ily built using Word­Press and var­i­ous plu­g­ins with­out ever touch­ing a line of code, but some­times we need/​want to do so to add some fur­ther func­tion­al­ity or to sim­ply learn about cod­ing. We will begin our explo­ration of hack­ing Word­Press by exam­in­ing: Anatomy of a Word­Press Theme as well as explor­ing the doc­u­ment avail­able in the Word­Press Codex.

    Word­Press Theme Basics
    Word­Press Child Themes

    Opera Dev: HTML and CSS

    List­ing of spe­cific Opera Web Devel­op­ment Cur­ricu­lum articles/​tutorials.

    Opera Dev: Web Design Concepts
    Opera Dev: HTML
    Opera Dev: CSS
    Opera Dev: HTML5

    Week 07: Proposals, Servers, and WordPress

    Project Devel­op­ment

    We will install a web devel­op­ment envi­ron­ment. There are sev­eral choices depend­ing on your OS, flex­i­bil­ity, and ease of use. I have listed three options below. If you know you might want to exper­i­ment with soft­ware other than Word­Press I would rec­om­mend either MAMP or WAMP; how­ever, if you are sure that you will use Word­Press — based on the pro­pos­als and our in-​class from last week, most of you will be able to com­plete your project using Word­Press — then I would choose the Desk­top Server option.

    Tasks

    • Read­ing /​Pro­pos­als
    • Install Server
    • Install Word­Press
    • HTML/​CSS Exercise

    Assign­ment

    Your con­tin­u­ing assign­ment is to refine your project pro­posal, gather your con­tent, and to begin map­ping out your project site. The fol­low­ing read­ings are not required but highly rec­om­mended (espe­cially the Boggs posts) to help you fur­ther con­tex­tu­al­ize and real­ize your project.

    Week 05: DH Projects

    Review
    • Gen­eral
    • Zotero
      • Review
      • Tags
      • Search
      • Adv. Search
      • Word Inte­gra­tion
      • Reports
      • Other
    DH Project Assignment
    • Assign­ment: Find­ing DH Projects; find 5 dis­tinct projects not cov­ered in class and record:
      • Name of Project
      • URL
      • Description (i.e., brief anno­ta­tion about what the project is and why you choose it)
      • record this infor­ma­tion in the fol­low­ing formats:
        • a .txt document
        • in your Zotero library
        • post to Twit­ter with #H340 hashtag
    • Ques­tions:

    Week 04 in Review: Finding DH Projects

    Just a quick review on what’s due for next week.

    Final Project Assign­ment: Find­ing DH Projects
    Stu­dents need to find 5 “DH” projects. The projects may be any­thing that the stu­dent deems a “DH” project. Stu­dents should be able to jus­tify why they chose the project.
    • Please record:
      • Name of Project
      • URL
      • Description (i.e., brief anno­ta­tion about what the project is, why you chose it, why you think it is a good exam­ple of a “DH” project)
    • in the fol­low­ing formats:
      • a .txt document
      • in your Zotero library
      • post to Twit­ter with #H340 hashtag

    Week 04: RSS and Zotero; Directories and HTML

    Review
    • RSS
    • Twit­ter
    • Search
    Admin
    • Read­ing
    • Final Project
    • Assign­ment: Find­ing DH Projects; find 5 dis­tinct projects not cov­ered in class and record:
      • Name of Project
      • URL
      • Description (i.e., brief anno­ta­tion about what the project is and why you choose it)
      • record this infor­ma­tion in the fol­low­ing formats:
        • a .txt document
        • in your Zotero library
        • post to Twit­ter with #H340 hashtag
    Zotero
    • Review
    • Tags
    • Search
    • Adv. Search
    • Word Inte­gra­tion
    • Reports
    • Other

    Week 03 in Review: Search and Zotero

    Search

    Search­ing is a fun­da­men­tal tool in any DH’ers war chest, and as with any tool or method it only becomes use­ful when you use it, con­sis­tently. I highly rec­om­mend that you all read through these arti­cles and tuto­ri­als to refresh your mem­ory on searching.

    Search Links

    Other Search Related Links

    Zotero

    Next to search­ing and using RSS, the most valu­able tool in your war chest as a researcher is a cita­tion man­ager. Zotero is, in my hum­ble opin­ion, the best cita­tion man­ager avail­able. You are, of course, wel­come to test out any of the avail­able cita­tion man­agers; how­ever, if you have not used a cita­tion man­ager pre­vi­ously, I would work with Zotero for a while before try­ing out another. I ran you through the basics of Zotero yes­ter­day, but I only hit the high­lights, so I will cover Zotero in greater detail next week. As prep for our sec­ond ses­sion with Zotero, please exper­i­ment with Zotero this week by adding in books, doc­u­ments, etc. that are directly related to your research and/​or field of study. In other words, prac­tice, prac­tice, prac­tice. If you need help, …

    You are wel­come and encour­aged to check out the other screen­casts that are avail­able, but the three listed above should suf­fice for our next ses­sion on Zotero.

    Week 03: Finding and Managing

    Intro­duc­tion & Review

    I use RSS and Twit­ter to gather — aggre­gate — infor­ma­tion. For our week 3 ses­sion, we will con­tinue to explore find­ing and man­ag­ing the infor­ma­tion that we are aggregating.

    Find­ing

    Search: Google
    Inside Google Search: Features
    The Basic Google Search
    Oper­a­tors and More Search Help
    Search Results Options and Tools
    Site-​Specific Searches
    Ver­ba­tim Tool
    Google Scholar: Basic Help
    Google Scholar: Advanced Search Tips
    Google: Save Search History
    Other Search Related Links
    How to make library users start a search: 6+ ways to search out­side “native interface”
    Microsoft Bing vs Google vs Yahoo! Search: Com­par­ing Search Algorithms
    Google Basic Search Les­son Plans Designed for K — 12 class­room, still good info.
    World­Cat Search
    World­Cat Widgets
    World­Cat Search Index Labels

    Col­lect­ing & Managing

    There are a num­ber of ways to “col­lect” and “man­age” information.

    Fire­Fox
    LibX Exten­sion;
    Read­abil­ity (course post on Read­abil­ity).
    Book­marks
    Eas­i­est way to archive the infor­ma­tion you are pulling in is through a book­mark. Every browser comes with built in book­mark­ing, but you can also use an online book­mark­ing ser­vice, e.g. …
    • Deli­cious: Orig­i­nal book­mark­ing service.
    • Google Book­marks. Book­marks stored via your google account.
    • Diigo: Free/​Premium book­mark­ing site. Does have ads depend­ing on plan.
    • Zootool: Empha­sis on visual-​oriented and social bookmarking.
    • Pin­Board: the Intro­verts Book­mark­ing Service.
    Zotero
    Zotero is my “goto” tool for col­lect­ing and man­ag­ing my research.
    Zotero
    Zotero Account
    Word Proces­sor Integration
    Help Doc­u­men­ta­tion
    Screen­casts

    Readability

    Read­abil­ity is avail­able for most major browsers — Read­abil­ity 2.0 is not free, but does offer more options than the free ver­sion. The free ver­sion is avail­able as an exten­sion for:

    Read­abil­ity can also be installed in any major browser — Fire­fox, Opera, Chrome, Safari — as a Book­marklet.

    Note: Read­ablity comes as a core com­po­nent in Safari called Reader—the Reader but­ton appears at the right end of the Safari address field. How­ever, Reader for Safari is avail­able only for Mac OS X v10.5 Leop­ard or later, and only appears when a web­page con­tains text-​based arti­cles. Based on my tests of Safari and Reader, Safari is fairly stingy about when it decides there is enough text to war­rant turn­ing on Reader. I rec­om­mend installing the Book­marklet so you can turn Read­abil­ity on when you want to use Read­abil­ity, not when Safari decides you should.

    Week 02 in Review: Twitter, RSS

    I hope you all found our sec­ond meet­ing use­ful. Here is a quick list of things we cov­ered and links to posts and other mate­r­ial to refresh your mem­ory and guide you fur­ther down the dig­i­tal rab­bit hole.

    Web­site Address Bar = Search Bar:
    Speed Up Your Search­ing in Fire­fox.
    Twit­ter, Why?
    How to Start Tweet­ing (and Why You Might Want To)
    An Envi­ron­men­tal His­to­rian and Twitter
    Note: see below for hack­ing Twit­ter via RSS (e.g., sub­scribe to the RSS feed for the class hash­tag #H340).
    RSS & Google Reader
    Keep­ing Up Online: An Intro to RSS
    RSS Read­ers: What Do You Use (if you do)? Note: read the comments.
    All Things Google: Using Google Reader to Stream­line Your Reading
    Google Reader Alternative
    Hack­ing Feeds & Twitter
    Hack­ing Your Library’s Cat­a­log: SMS and RSS
    Hack­ing Your Library Cat­a­log, Part 2: Mobile Apps
    Hack­ing an RSS Reed for Twit­ter Hashtags
    Man­ag­ing Twit­ter Favorites

    Tags: User Folksonomies

    Quick list of links to arti­cles that dis­cuss and attempt to unpack the con­cept of the Folk­son­omy.


    “‘Tags are great because you throw cau­tion to the wind, for­get about whit­tling down every­thing into a dis­tinct set of cat­e­gories and instead let folks loose cat­e­go­riz­ing their own stuff on their own terms’.” 1

    Folk­sonomies, pop­u­larly known as “tag­ging,” is a dis­trib­uted, user derived and defined sys­tem for clas­si­fy­ing and orga­niz­ing infor­ma­tion. From text to pho­tos, users add key­words to items to clas­sify those items along mul­ti­ple orga­ni­za­tional avenues while adding “value” to the text or photo or video.

    “‘It’s very much peo­ple tag­ging infor­ma­tion so that they can come back to it them­selves or so that oth­ers with the same vocab­u­lary can find it’, said Thomas Van­der Wal, the infor­ma­tion archi­tect cred­ited with coin­ing the term ‘folk­son­omy’.” 2

    With par­tic­u­lar regard to our blog­ging endeav­ors, we will explore tag­ging as a means for clas­si­fy­ing, orga­niz­ing, and adding value to our blog posts as well as the images and video we may use in our posts and as part of other exploratory and build­ing projects. The process of tag­ging—cre­at­ing a per­sonal folk­son­omy — will hope­fully allow us one avenue through which we can bet­ter under­stand meta­data and its impli­ca­tions for doing, man­ag­ing, manip­u­lat­ing, and pub­lish­ing our research on the web.

    “‘The job of tags isn’t to orga­nize all the world’s infor­ma­tion into tidy cat­e­gories,’ said Stew­art But­ter­field, one of Flickr’s co-​founders. ‘It’s to add value to the giant piles of data that are already out there’.” 3


    The fol­low­ing arti­cles are highly rec­om­mended — but not required — reading.

    Marieke, Guy, and Emma Tonkin. “Folk­sonomies: Tidy­ing up Tags?.” D-​Lib Mag­a­zine 12(1) (Jan­u­ary 2006).
    This is a par­tic­u­larly use­ful and acces­si­ble arti­cle on tag­ging and the con­cept of Folk­sonomies. The authors exam­ine what makes a folk­son­omy work and ques­tion whether crit­i­cisms about tag­ging being a “sloppy” sys­tem — for orga­niz­ing and access­ing infor­ma­tion because it lacks a for­mal sys­tem of rules, and is user-​derived and asyn­chro­nously dis­trib­u­tive — is justified.
    Ter­di­man, Daniel. “Folk­sonomies Tap Peo­ple Power.” Wired Mag­a­zine, Feb­ru­ary 1, 2005.
    Unlike the other arti­cles in this list, this arti­cle is light on argu­ment, but is still a good, short intro­duc­tion to the con­cept of folksonomies.
    Tonkin, Emma. “Folk­sonomies: The Fall and Rise of Plain-​text Tag­ging.” Ari­adne, 47 (April 2006).
    Of the three arti­cles listed here, this arti­cle is the most dif­fi­cult to engage with respect to the tech­ni­cal lingo used in the arti­cle and some assump­tions about the reader’s under­stand­ing of what meta­data is and how it oper­ates. Nonethe­less, this is a good arti­cle and worth­while in help­ing us under­stand meta­data via tagging.

    Week 02: Organization, Subscribing, Connecting

    • Text Edi­tor
    • Downloads & your DeskTop
    • Files/​Directories
    • Search via the URL field
    • Tags
    • Zotero
    • RSS
    • Twit­ter
    • HTML

    Links & Resources

    Text Edi­tor

    Win­dows OS
    Mac OSX
    There are many other Text Edi­tors avail­able, some free, some paid, but not all are cre­ated equal. I have found these edi­tors to be the “best” but do not take it on my author­ity only, test drive oth­ers to find one that is intu­itive and user-​friendly for you. Smash­ing Mag­a­zine has a num­ber of arti­cles on text edi­tors

    Files & Directories

    Files
    • Files: What means turn­ing on .extensions;
    • File Con­ven­tions: lower-​case only, alphanu­mer­ics only (e.g., no spaces); allowed spe­cial char­ac­ters: Dot .; Dash -; Under­score _;
    • File Nam­ing: Con­sis­tency; Pre or Ap –pend an iden­ti­fier using either a date or key­word (tag); Exam­ples: YYYYMMDD_html_exercise.txt; 340_html_exercise_01.txt; or, 340_html_exercise_01_YYYYMMDD.txt.
    Direc­to­ries
    • Direc­to­ries: aka “Folders”
    • Direc­tory Con­ven­tions: lower-​case only, alphanu­mer­ics only (e.g., no spaces); allowed spe­cial char­ac­ters: Dot .; Dash -; Under­score _;
    • Direc­tory Nam­ing: Con­sis­tency; Pre or Ap –pend an iden­ti­fier using either a date or key­word (tag); Exam­ples: YYYYMMDD.HTML_Exercise; 340.HTML_Exercise_01; or, 340.HTML_Exercise_01.YYYYMMDD.txt.

    Feeds & Readers

    Feeds
    What is a feed or RSS?;
    Read­ing Feeds with Google Reader (Sign Into Your Google Account first);
    Sub­scrib­ing to Feeds: Reader, from FireFox.
    Sub­scrib­ing

    Week 01: Getting Started

    As per class yes­ter­day, here is your assignment(s) for the week. We will spend some time at the start of next week’s class cov­er­ing Turkel’s sug­ges­tions as well as on using Twit­ter. As always, if you have ques­tions or con­cerns, shoot me an email, send me tweet, or you can leave a com­ment on this post. I am here to help.

    1. Read the arti­cles from Turkel to help you get started think­ing about what DH is and doing DH. You are not required to pur­chase any soft­ware, etc. that he mentions.
    2. Sign up for a Google Account. We will start using some of the fea­tures avail­able with a Google Account next week.
    3. Sign up for a Twit­ter Account. Resources to help you get up and run­ning with Twitter:
    4. Down­load and install a Text Edi­tor.

    Digital Humanities Quotes

    Any medium pow­er­ful enough to extend man’s reach is pow­er­ful enough to top­ple his world. To get the medium’s magic to work for one’s aims rather than against them is to attain literacy.

    Alan Kay

    in our wired world, it’s essen­tial that we all gain some con­trol over the tech­nol­ogy that increas­ingly per­vades our lives. … Being able to fix your car when it breaks down is a tremen­dous skill to have. Being able to bend com­put­ers to your will is even more so, since here we’re deal­ing with infor­ma­tion tech­nol­ogy — a medium of thought and com­mu­ni­ca­tion as vital to the trans­mis­sion of ideas as the abil­ity to use a pen.

    Steven Ram­sey

    The Web is not just some friv­o­lous vehi­cle for enter­tain­ment and vir­tual com­mu­nity. Going for­ward, it’s going to be a vital aspect of human endeavor and an impor­tant lynch­pin in affect­ing the human condition.

    Andy Rut­ledge

    the ques­tions raised by dig­i­tal [human­i­ties] are some of the most impor­tant that we face. The explo­sion of printed mate­r­ial after the fif­teenth cen­tury fun­da­men­tally changed schol­ar­ship … [w]e are cur­rently in the midst of another such trans­for­ma­tion, one that will give us nearly instan­ta­neous access to the con­tents of the world’s great libraries and archives, will rad­i­cally democ­ra­tize knowl­edge pro­duc­tion, and will force us to think of machines as part of our audi­ence.

    William J. Turkel

    What does it mean to study “lit­er­a­ture” or “his­tory” when print is no longer the nor­ma­tive medium in which lit­er­ary or his­tor­i­cal arti­facts are pro­duced, let alone ana­lyzed? What does it mean, more gen­er­ally, for human­is­tic knowledge?

    Dig­i­tal His­tory Manifesto