Category Archives: Uncategorized

Studi kasus “Karyawan sebagai duta besar: strategi public relations dalam konteks HR”

STUDI KASUS: RAILTRACK PLC.BRITAIN
Pendahuluan

Strategi komunikasi di Railtrack menjadi fokus setelah perusahaan ini diprivatisasi pada tahun 1997. Di perlukan revisi-revisi yang utama untuk memastikan keberhasilan perubahan jangka panjang dan jangka pendek oleh manajemen dan karyawan pada setiap tingkat.

 
Poin-poin kunci

Strategi komunikasi menunjukkan signifikasi dari public relations dalam proses perubahan
Strategi komunikasi mencerminkan pentingnya scanning internal untuk mengidentifikasi audiens […]

Post from: “Belajar pintar berkomunikasi”
Yang penting bukan apa yang kita komunikasikan tetapi bagaimana kita mengkomunikasikan

Studi kasus “Karyawan sebagai duta besar: strategi public relations dalam konteks HR”

Karyawan sebagai duta besar: strategi public relations dalam konteks HR (II)

KOMUNIKASI INTERNAL
Perubahan berskala besar dari program komunikasi internal harus mempertimbangkan hal-hal berikut ini:

Perubahan tersebut harus dimulai dari isu-isu penting jangka pendek yang dihadapi dan dipahami oleh para manajer serta tidak dimulai dengan program komunikasi bisnis global dan jangka panjang yang dipublikasikan sebagai dokumen yang tidak sensitif terhadap kebutuhan indiividu.
Perubahan tersebut harus menciptakan pandangan yang realistis […]

Post from: “Belajar pintar berkomunikasi”
Yang penting bukan apa yang kita komunikasikan tetapi bagaimana kita mengkomunikasikan

Karyawan sebagai duta besar: strategi public relations dalam konteks HR (II)

Giving your users changeable or custom headers in themes

Built in to WordPress, and also available for WordPress MU, is the Custom header API. This service allows you to quickly add some code to a theme’s fuinctions.php file to make the header area completely customizable. User will be able to upload a header image of their choice on their chosen theme, without affecting other blogs using the same theme.

You may want to try this first on a test site of WPMU.

First, check and see if your theme has a functions.php file included. If it doesn’t, make a blank file called functions.php. If it already has code in it, which it will if the theme is widget enabled, then you can paste this code in right before the last ?> tag.

//make changeable header

define('HEADER_TEXTCOLOR', '');
define('HEADER_IMAGE', 'setta.jpg'); // %s is theme dir uri and image filename
define('HEADER_IMAGE_WIDTH', 985);  // make sure these values match the theme header
define('HEADER_IMAGE_HEIGHT', 200);
define( 'NO_HEADER_TEXT', true );

function atypxmas_admin_header_style() {   // change atypxmas to your theme name
?>

// this part adds the header in the admin area
#headimg {
height: <?php echo HEADER_IMAGE_HEIGHT; ?>px;
width: <?php echo HEADER_IMAGE_WIDTH; ?>px;
}

#headimg h1, #headimg #desc {
display: none;}
}

function header_style() {
?>

#header{
background: url(<?php header_image() ?>) no-repeat;}
}

add_custom_image_header(’header_style’, ‘atypxmas_admin_header_style’);  // change atypxmas to your theme name you used above.

And that’s it! Everything else is handled internally by WordPress. To make things even easier, here’s a copy of a sample functions.php file. Please read the code and change the values accordingly for your specific theme, including the filename.